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

.card-medium-a564:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.static_91a4,
header,
.chip-prev-e67b,
.input-over-d1a8,
.image-focused-9359,
.sort-038a,
.tertiary-active-bd97,
.item-hovered-ab28,
.complex_a17e {
  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
   ============================================ */
.static_91a4 {
  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);
}

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

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

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

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

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

.active-center-4c39 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.nav-8339 {
  flex: 1;
}

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

.dirty-4cdd {
  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);
}

.dirty-4cdd:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.dirty-4cdd.fn-active-6cd3 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.module_fast_ab99 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .nav-8339::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .nav-8339.list-easy-1100 {
    display: block;
    right: 0;
  }
  
  .current_c490 {
    flex-direction: column;
    gap: 0;
  }
  
  .dirty-4cdd {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .nav-8339::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;
  }
  
  .nav-8339.list-easy-1100::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .nav-8339 {
    display: none;
  }
  
  .feature-d0db {
    display: flex;
  }
  
  .east-d9ac {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .module_fast_ab99,
  .purple-e8f1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tag_bottom_a404 {
    position: relative;
  }
  
  .text_8ccd {
    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;
  }
  
  .wood_7dbe[aria-expanded="true"] + .text_8ccd {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .section_7aac {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .middle-36ff {
    gap: 8px;
  }
  
  .module_fast_ab99 {
    display: none;
  }
  
  .purple-e8f1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .active-center-4c39 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.box-820c {
  display: flex;
  align-items: center;
  gap: 6px;
}

.box-820c svg {
  flex-shrink: 0;
}

.box-820c a {
  color: var(--color-primary);
  text-decoration: none;
}

.box-820c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.banner-e344 a:hover {
  text-decoration: underline;
}

.preview-tall-40e7 {
  color: var(--color-text-lighter);
}

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

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

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

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

@media (max-width: 768px) {
  .button-brown-32e9 {
    grid-template-columns: 1fr;
  }
}

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

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

.dark-26dd {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dark-26dd strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.shadow-silver-4bd8 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .large-b14a {
    grid-template-columns: 1fr;
  }
  
  .rough_aba8 {
    font-size: 1.75rem;
  }
  
  .panel_d88e {
    order: -1;
    max-width: 100%;
  }
  
  .shadow-silver-4bd8 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .rough_aba8 {
    font-size: 1.5rem;
  }
  
  .summary_large_5e37 {
    font-size: 1rem;
  }
  
  .banner-e344 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .shadow-silver-4bd8 {
    max-width: 250px;
  }
}

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

.huge-26d5 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-light-afcb {
  list-style: none;
  counter-reset: toc-counter;
}

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

.title-light-afcb 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);
}

.title-light-afcb 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;
}

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

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

.aside-focused-9409 {
  background: var(--color-bg-section);
}

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

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

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

.photo-out-9d5c {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

.overlay-fast-667a {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.overlay-fast-667a img {
  max-width: 100%;
  height: auto;
  display: block;
}

.overlay-fast-667a pre,
.overlay-fast-667a code {
  overflow-x: auto;
  max-width: 100%;
}

.overlay-fast-667a 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);
}

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

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

.overlay-fast-667a p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.overlay-fast-667a ul,
.overlay-fast-667a ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.overlay-fast-667a li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.overlay-fast-667a strong {
  font-weight: 600;
  color: var(--color-text);
}

.overlay-fast-667a a {
  color: var(--color-primary);
  text-decoration: underline;
}

.overlay-fast-667a a:hover {
  color: var(--color-primary-dark);
}

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

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

.main_20a5 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) {
  .image-full-4eed {
    grid-template-columns: 1fr;
  }
  
  .in-7401 {
    font-size: 1.75rem;
  }
  
  .overlay-fast-667a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .in-7401 {
    font-size: 1.5rem;
  }
  
  .overlay-fast-667a h3 {
    font-size: 1.375rem;
  }
  
  .overlay-fast-667a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.grid-out-1b61 {
  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;
}

.dynamic-fb55 {
  flex-shrink: 0;
}

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

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

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

.highlight_4901,
.header-5480,
.panel_e4cc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.highlight_4901 thead,
.header-5480 thead {
  background: var(--color-primary);
  color: white;
}

.highlight_4901 th,
.highlight_4901 td,
.header-5480 th,
.header-5480 td,
.panel_e4cc th,
.panel_e4cc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .highlight_4901 th,
  .highlight_4901 td,
  .header-5480 th,
  .header-5480 td,
  .panel_e4cc th,
  .panel_e4cc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .highlight_4901,
  .header-5480,
  .panel_e4cc {
    min-width: 600px;
  }
}

.highlight_4901 th,
.header-5480 th,
.panel_e4cc th {
  font-weight: 600;
}

.highlight_4901 tbody tr:hover,
.header-5480 tbody tr:hover,
.panel_e4cc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.gold-a83e h4 {
  color: white;
}

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

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

.iron-398d:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.lite-19da {
  font-weight: 600;
  color: white;
}

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

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

.overlay_narrow_b634 {
  color: #4caf50;
}

.pagination-1ec6 {
  color: #ff9800;
}

.title-gold-312f {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

.grid-fixed-3c8d {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

.focus-6edb {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.text-5a42 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.middle_b19e .top_b189 {
  width: 100%;
  background: white;
}

.gradient-bd1a .top_b189 {
  color: #667eea;
}

.notice_current_d4c1 .top_b189 {
  color: #f5576c;
}

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

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

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

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

.layout-middle-844b h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .layout-middle-844b {
    padding: var(--space-md);
  }
  
  .component_purple_1f7b {
    padding: var(--space-md);
  }
  
  .rough_366b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.modal-red-7920 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.copper_7867,
.thick_26a5,
.container-03a5,
.accent-slow-8999 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.primary-outer-572d {
  border-color: var(--color-success);
}

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

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

.primary-outer-572d .info_09d6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.hard_b64a .info_09d6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.section-smooth-ebef {
  margin-top: var(--space-xxl);
}

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

.card-plasma-f5d1 {
  text-align: center;
}

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

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

.paper_da2e .lite-19da {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-yellow-1484 {
  border: 2px solid #4caf50;
}

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

.middle-79f9 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.new_e132 {
  text-align: right;
}

.new_e132 .widget_right_3b2b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.layout-south-32bf {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.bottom-2fe5 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.grid-west-d290 strong {
  color: var(--color-primary);
}

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

.label-clean-8e6b {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.primary-last-76f6 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-huge-e6c3 {
  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);
}

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

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

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

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

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

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

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

.text_4837 ul,
.input_b8e4 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_dirty_6b46 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary_first_7109 {
  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) */
.tabs-over-449d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.focus-33e7 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-33e7 li {
  margin-bottom: var(--space-xs);
}

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

.focus-33e7 a:hover {
  color: white;
}

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

.stale-190f 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);
}

.stale-190f a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.dropdown-9bfd {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.dropdown-9bfd a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .primary_first_7109,
  .tabs-over-449d {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.first-87eb .message_static_aa6e {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.wrapper_clean_1194 a:hover {
  color: white;
}

.fresh-b46c {
  list-style: none;
  padding: 0;
}

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

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

.fresh-b46c a:hover {
  color: white;
}

.table-plasma-ec59 {
  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);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .table-plasma-ec59 {
    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;
  }
  
  .rough_aba8 {
    font-size: 2rem;
  }
  
  .in-7401 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .large-b14a,
  .image-full-4eed {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .soft_54cd,
  .preview-over-528b,
  .slider_cc17,
  .static-0656,
  .outline_e4ad,
  .fast-4ca7,
  .texture_paper_1e80,
  .primary_first_7109,
  .tabs-over-449d {
    grid-template-columns: 1fr;
  }
  
  .caption-6f71 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tertiary-active-bd97 {
    padding: var(--space-lg) 0;
  }
  
  .title-light-afcb li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .title-light-afcb li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .top_b189 {
    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;
  }
  
  .caption-6f71 {
    grid-template-columns: 1fr;
  }
  
  .focus_cool_c6c7,
  .liquid-5dea,
  .paper-586c {
    flex-direction: column;
    width: 100%;
  }
  
  .search_38ca,
  .grid_smooth_b3cf,
  .focus_cool_c6c7 .top_b189,
  .liquid-5dea .top_b189 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .rough_aba8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .in-7401 {
    font-size: 1.375rem;
  }
  
  .cold_a8b7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .mask_b077,
  .grid_1f6f,
  .pink-edc1,
  .complex_87d2,
  .shadow-82ab {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tag_bb1f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .modal_ed92 {
    gap: var(--space-xs);
  }
  
  .box-820c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .dropdown_32ab {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .paper_da2e {
    width: 150px;
    height: 150px;
  }
  
  .inner_9988 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .static_91a4,
  .chip-prev-e67b,
  .focus_cool_c6c7,
  .section_bb9e,
  .item-hovered-ab28,
  .complex_a17e,
  .feature-d0db {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tertiary-active-bd97 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1b52 */
.shadow-element-k5 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
