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

.table-6820:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.surface-7b23,
header,
.avatar_9538,
.text_easy_a11c,
.warm_0b74,
.inner_de97,
.header-cee5,
.overlay-red-00e0,
.item-east-0ae6 {
  max-width: none;
}

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

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

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

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

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

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

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

/* Scrolled state */
.surface-7b23.mask_over_6793 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.nav-cc6d img {
  height: 36px;
  width: auto;
  display: block;
}

.element-pro-09b2 {
  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;
}

.hover-5864 {
  flex: 1;
}

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

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

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

.yellow_8c8c.chip-1b23 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.bottom-7e94 {
  position: relative;
}

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

.tabs-under-df9e svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.info-b78f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .hover-5864 {
    display: none;
  }
  
  .filter-f136 {
    display: flex;
  }
  
  .element-pro-09b2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .info-b78f,
  .section_02e1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .bottom-7e94 {
    position: relative;
  }
  
  .wide-c1c9 {
    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;
  }
  
  .tabs-under-df9e[aria-expanded="true"] + .wide-c1c9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tag-top-9a70 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .outline_orange_1083 {
    gap: 8px;
  }
  
  .info-b78f {
    display: none;
  }
  
  .section_02e1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .nav-cc6d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.advanced_64ad svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.video-current-8728 a {
  color: var(--color-primary);
  text-decoration: none;
}

.video-current-8728 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.feature-blue-81b2 {
  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;
}

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

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

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

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

.caption-solid-9944 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hard-51fb {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.menu-south-8bbd {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .medium-df9c {
    grid-template-columns: 1fr;
  }
  
  .border_thick_6020 {
    font-size: 1.75rem;
  }
  
  .caption-solid-9944 {
    order: -1;
    max-width: 100%;
  }
  
  .hard-51fb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border_thick_6020 {
    font-size: 1.5rem;
  }
  
  .popup_cf0a {
    font-size: 1rem;
  }
  
  .video-current-8728 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hard-51fb {
    max-width: 250px;
  }
}

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

.section-current-9b81 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.banner-dynamic-17f4 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.content-red-8a35 {
  list-style: none;
  counter-reset: toc-counter;
}

.content-red-8a35 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.content-red-8a35 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);
}

.content-red-8a35 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;
}

.content-red-8a35 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

.summary-action-e270 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.summary-action-e270 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);
}

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

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

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

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

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

.summary-action-e270 strong {
  font-weight: 600;
  color: var(--color-text);
}

.summary-action-e270 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.summary-action-e270 a:hover {
  color: var(--color-primary-dark);
}

.table-gold-3c74 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.table-gold-3c74 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) {
  .sort-4d5c {
    grid-template-columns: 1fr;
  }
  
  .search_9e5d {
    font-size: 1.75rem;
  }
  
  .summary-action-e270 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .search_9e5d {
    font-size: 1.5rem;
  }
  
  .summary-action-e270 h3 {
    font-size: 1.375rem;
  }
  
  .summary-action-e270 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.heading-5a94 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.surface-east-979d {
  flex-shrink: 0;
}

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

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

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

.accordion_dirty_68a7,
.card-middle-5e41,
.next_b43a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion_dirty_68a7 thead,
.card-middle-5e41 thead {
  background: var(--color-primary);
  color: white;
}

.accordion_dirty_68a7 th,
.accordion_dirty_68a7 td,
.card-middle-5e41 th,
.card-middle-5e41 td,
.next_b43a th,
.next_b43a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .accordion_dirty_68a7 th,
  .accordion_dirty_68a7 td,
  .card-middle-5e41 th,
  .card-middle-5e41 td,
  .next_b43a th,
  .next_b43a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .accordion_dirty_68a7,
  .card-middle-5e41,
  .next_b43a {
    min-width: 600px;
  }
}

.accordion_dirty_68a7 th,
.card-middle-5e41 th,
.next_b43a th {
  font-weight: 600;
}

.accordion_dirty_68a7 tbody tr:hover,
.card-middle-5e41 tbody tr:hover,
.next_b43a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.out_de07 h4 {
  color: white;
}

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

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

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

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

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

.info-pressed-7d3e {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

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

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

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

.green-2379 {
  list-style: none;
  padding: 0;
}

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

.fresh-5e4f {
  color: #4caf50;
}

.progress_out_b1d6 {
  color: #ff9800;
}

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

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

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

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

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

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

/* ============================================
   15. FEATURE GRID
   ============================================ */
.input-dark-c33a {
  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-dark-c33a {
    grid-template-columns: 1fr;
  }
}

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

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

.highlight-smooth-2a0f {
  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;
}

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

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

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

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

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

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

.overlay-bronze-2ec1 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.warm_16fa .iron-38e7 {
  width: 100%;
  background: white;
}

.block-orange-0785 .iron-38e7 {
  color: #667eea;
}

.column-iron-118f .iron-38e7 {
  color: #f5576c;
}

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

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

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

.shade-glass-3060 {
  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);
}

.shade-selected-5e89 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.picture-2d83 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .shade-selected-5e89 {
    padding: var(--space-md);
  }
  
  .picture-2d83 {
    padding: var(--space-md);
  }
  
  .active-dark-daca {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.column-7ab0 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.wide_f196,
.steel_c060,
.plasma-3988,
.primary-blue-e5cf {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.input-blue-9203 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.caption-wide-2290 {
  border-color: var(--color-success);
}

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

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

.caption-wide-2290 .accordion_0a6f {
  background: #e8f5e9;
  color: var(--color-success);
}

.badge-a1be .accordion_0a6f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero-solid-2d4d {
  margin-top: var(--space-xxl);
}

.popup-old-c26a {
  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);
}

.description_d8d1 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-out-c6a3 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.notification-copper-237e {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.outline-064c {
  text-align: right;
}

.outline-064c .action-3a70 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.left-4d13 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.block-dark-0b96 strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.image-focused-74e2 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.small_b6f1 ul,
.fixed_8774 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.wood-60f6 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.mini_8823 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel_987a .smooth_21dd {
  color: #4caf50;
  font-size: 0.875rem;
}

.photo-a629 {
  list-style: none;
  padding: 0;
}

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

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

.photo-a629 a:hover {
  color: white;
}

.pressed-8c24 {
  list-style: none;
  padding: 0;
}

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

.pressed-8c24 a {
  color: #b0b0b0;
  text-decoration: none;
}

.pressed-8c24 a:hover {
  color: white;
}

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

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

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

.slider-thick-904a {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.frame-fcb0:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .info_bright_af31 {
    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;
  }
  
  .border_thick_6020 {
    font-size: 2rem;
  }
  
  .search_9e5d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .medium-df9c,
  .sort-4d5c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .input-dark-c33a,
  .message-ac6a,
  .box-5ead,
  .tiny_e69d,
  .selected-7a3f,
  .old-d82d,
  .advanced_96a2,
  .preview_c307 {
    grid-template-columns: 1fr;
  }
  
  .focus-5c7e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .header-cee5 {
    padding: var(--space-lg) 0;
  }
  
  .content-red-8a35 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .content-red-8a35 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .iron-38e7 {
    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;
  }
  
  .focus-5c7e {
    grid-template-columns: 1fr;
  }
  
  .hot-3426,
  .disabled_basic_2511,
  .container-iron-fe52 {
    flex-direction: column;
    width: 100%;
  }
  
  .alert_full_89c9,
  .banner-dynamic-17f4,
  .hot-3426 .iron-38e7,
  .disabled_basic_2511 .iron-38e7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border_thick_6020 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .search_9e5d {
    font-size: 1.375rem;
  }
  
  .focused-3f4c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .bright_26c2,
  .table-upper-0616,
  .slider-current-66fe,
  .component_easy_9ca4,
  .small_25cb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .pro-32bb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .alert-copper-7407 {
    gap: var(--space-xs);
  }
  
  .advanced_64ad {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .preview-a26a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .current_0b3b {
    width: 150px;
    height: 150px;
  }
  
  .tooltip_2266 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .surface-7b23,
  .avatar_9538,
  .hot-3426,
  .blue_6cfd,
  .overlay-red-00e0,
  .item-east-0ae6,
  .filter-f136 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .header-cee5 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 94d1 */
.widget-item-i3 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
