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

.large-bd98:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.gradient_1cd5,
header,
.alert_narrow_709b,
.footer_ee1e,
.secondary_next_1548,
.red-54e6,
.light-5ffb,
.active_b475,
.cool-1442 {
  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
   ============================================ */
.gradient_1cd5 {
  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);
}

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

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

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

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

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

.stone-9731 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.slider_d865 {
  flex: 1;
}

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

.column-1eb8 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.column-1eb8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.column-1eb8.fn-active-3f10 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.last-6dda {
  position: relative;
}

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

.up-c5ca svg {
  transition: transform 0.2s ease;
}

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

.tabs-new-c2c2 {
  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;
}

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

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

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

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

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

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

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

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

.overlay_3e59 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.rough-072b[aria-expanded="true"] .block_bottom_fa6b:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .slider_d865 {
    display: none;
  }
  
  .rough-072b {
    display: flex;
  }
  
  .modal_warm_e75a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .overlay_3e59,
  .paragraph_soft_eb33 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .last-6dda {
    position: relative;
  }
  
  .tabs-new-c2c2 {
    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;
  }
  
  .up-c5ca[aria-expanded="true"] + .tabs-new-c2c2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .wrapper-5c55 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dim_3370 {
    gap: 8px;
  }
  
  .overlay_3e59 {
    display: none;
  }
  
  .paragraph_soft_eb33 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .stone-9731 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.full_e655 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink-81f0 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .white-5e5a {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-bronze-e9a3 {
    font-size: 1.75rem;
  }
  
  .element_tall_5792 {
    order: -1;
    max-width: 100%;
  }
  
  .pink-81f0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .thumbnail-bronze-e9a3 {
    font-size: 1.5rem;
  }
  
  .button-west-60ab {
    font-size: 1rem;
  }
  
  .texture_f63c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pink-81f0 {
    max-width: 250px;
  }
}

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

.hidden-6a97 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.primary-thick-f1c2 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-red-310a {
  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);
}

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

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

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

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

.container-last-71e8 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.container-last-71e8 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-last-71e8 pre,
.container-last-71e8 code {
  overflow-x: auto;
  max-width: 100%;
}

.container-last-71e8 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);
}

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

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

.container-last-71e8 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

.container-last-71e8 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.container-last-71e8 strong {
  font-weight: 600;
  color: var(--color-text);
}

.container-last-71e8 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.container-last-71e8 a:hover {
  color: var(--color-primary-dark);
}

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

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

.lite_7c8f 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) {
  .thick-b836 {
    grid-template-columns: 1fr;
  }
  
  .preview-c8d6 {
    font-size: 1.75rem;
  }
  
  .container-last-71e8 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .preview-c8d6 {
    font-size: 1.5rem;
  }
  
  .container-last-71e8 h3 {
    font-size: 1.375rem;
  }
  
  .container-last-71e8 h4 {
    font-size: 1.125rem;
  }
}

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

.wrapper-4c2c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.table_over_5d12 {
  flex-shrink: 0;
}

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

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

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

.short_6957,
.shade-focused-81ae,
.input-copper-5ec2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.short_6957 thead,
.shade-focused-81ae thead {
  background: var(--color-primary);
  color: white;
}

.short_6957 th,
.short_6957 td,
.shade-focused-81ae th,
.shade-focused-81ae td,
.input-copper-5ec2 th,
.input-copper-5ec2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .short_6957 th,
  .short_6957 td,
  .shade-focused-81ae th,
  .shade-focused-81ae td,
  .input-copper-5ec2 th,
  .input-copper-5ec2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .short_6957,
  .shade-focused-81ae,
  .input-copper-5ec2 {
    min-width: 600px;
  }
}

.short_6957 th,
.shade-focused-81ae th,
.input-copper-5ec2 th {
  font-weight: 600;
}

.short_6957 tbody tr:hover,
.shade-focused-81ae tbody tr:hover,
.input-copper-5ec2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.badge_selected_390b h4 {
  color: white;
}

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

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

.wrapper-lite-0453:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.up-76ec {
  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);
}

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

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

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

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

.photo-fresh-ac25 {
  color: #4caf50;
}

.tag-glass-d5e4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-tiny-b207 .title-brown-7660 {
  width: 100%;
  background: white;
}

.first-134c .title-brown-7660 {
  color: #667eea;
}

.next_6a93 .title-brown-7660 {
  color: #f5576c;
}

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

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

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

.nav-up-a6cf {
  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);
}

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

.alert-7dc3 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .shadow_right_0610 {
    padding: var(--space-md);
  }
  
  .alert-7dc3 {
    padding: var(--space-md);
  }
  
  .heading_68eb {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.gold-7a97,
.accordion_hot_71fc,
.silver_1a69,
.shade-east-6865 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.shadow-under-6c6f:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.focus-short-2a5b {
  border-color: var(--color-warning);
}

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

.top_e34c .border_tall_7adb {
  background: #e8f5e9;
  color: var(--color-success);
}

.focus-short-2a5b .border_tall_7adb {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hot-5a9c {
  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);
}

.message-1564 {
  text-align: center;
}

.outline-motion-f34a {
  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);
}

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

.outline-motion-f34a .brown_18ef {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.table-45c2 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.active-static-029c {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.upper-1d98 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.lower-1977 {
  text-align: right;
}

.lower-1977 .outer_bbd6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.breadcrumb-pressed-592e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.background-medium-161f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.notification-last-742e {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.widget-rough-03da {
  background: #fff3e0;
  color: #e65100;
}

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

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

.row_5a3b {
  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_5a3b:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.shade-upper-25ad strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-10fc {
  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);
}

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

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

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

.sort_b9d9,
.frame-down-d4af {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.sort_b9d9 h4,
.frame-down-d4af h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.sort_b9d9 ul,
.frame-down-d4af ul {
  list-style: none;
  padding: 0;
}

.sort_b9d9 li,
.frame-down-d4af li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-huge-c33f {
  font-style: italic;
}

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

.fixed-2cf8 {
  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;
}

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

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

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

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

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

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

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

.hero-bronze-1f6e {
  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);
}

.hero-bronze-1f6e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.hero-bronze-1f6e p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.west_abd5 a:hover {
  color: white;
}

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

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

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

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

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

.selected_1f32 a:hover {
  color: white;
}

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

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

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

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

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

.column-center-e95a .column-mini-8441 {
  color: #4caf50;
  font-size: 0.875rem;
}

.center-6734 {
  list-style: none;
  padding: 0;
}

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

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

.center-6734 a:hover {
  color: white;
}

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

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

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

.east_8b9c a:hover {
  color: white;
}

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

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

.silver-09ea a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.message-up-f69d 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;
}

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

.container-0ffd:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .upper_81f1 {
    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;
  }
  
  .thumbnail-bronze-e9a3 {
    font-size: 2rem;
  }
  
  .preview-c8d6 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .white-5e5a,
  .thick-b836 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .module-1631,
  .status-c1d2,
  .hero_advanced_fa30,
  .center_5a57,
  .highlight_d6e2,
  .tabs_outer_9be6,
  .caption-242e,
  .purple-e17b,
  .in_ac5a {
    grid-template-columns: 1fr;
  }
  
  .tabs_4035 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .light-5ffb {
    padding: var(--space-lg) 0;
  }
  
  .dim_fbdb li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dim_fbdb li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .title-brown-7660 {
    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;
  }
  
  .tabs_4035 {
    grid-template-columns: 1fr;
  }
  
  .input_bc16,
  .warm_9266,
  .menu-rough-3684 {
    flex-direction: column;
    width: 100%;
  }
  
  .hidden_64e7,
  .primary-thick-f1c2,
  .input_bc16 .title-brown-7660,
  .warm_9266 .title-brown-7660 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .thumbnail-bronze-e9a3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .preview-c8d6 {
    font-size: 1.375rem;
  }
  
  .menu_a46e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .steel-5604,
  .rough-0f62,
  .text-soft-15d9,
  .thick-cf3a,
  .gold_e1ca {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .video_glass_cc48 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .container_35c3 {
    gap: var(--space-xs);
  }
  
  .full_e655 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .up-76ec {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .outline-motion-f34a {
    width: 150px;
    height: 150px;
  }
  
  .aside-adab {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .gradient_1cd5,
  .alert_narrow_709b,
  .input_bc16,
  .fixed-2cf8,
  .active_b475,
  .cool-1442,
  .rough-072b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .light-5ffb {
    page-break-inside: avoid;
  }
}

/* css-noise: d2a2 */
.promo-block-p7 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
