/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.row_fcf3 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.row_fcf3:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.photo_9e7c,
header,
.item-5aa5,
.lower_8b6f,
.description-354a,
.new-29f9,
.left-f3d5,
.header_f741,
.title-dark-7433 {
  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
   ============================================ */
.photo_9e7c {
  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);
}

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

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

/* Scrolled state */
.photo_9e7c.message-rough-71aa {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.pressed-b4af img {
  height: 36px;
  width: auto;
  display: block;
}

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

.section_93f5 {
  flex: 1;
}

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

.title-84ba {
  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);
}

.title-84ba:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.title-84ba.fn-active-803c {
  background: var(--color-primary);
  color: white;
}

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

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

.silver-27f6 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.new_f042 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.paragraph_dynamic_9011 {
  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_dynamic_9011: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_dynamic_9011 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.over_9335[aria-expanded="true"] .box-5d5a:nth-child(2) {
  opacity: 0;
}

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

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

  .section_93f5::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .section_93f5.video_next_08ff {
    display: block;
    right: 0;
  }
  
  .text-simple-7639 {
    flex-direction: column;
    gap: 0;
  }
  
  .title-84ba {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .section_93f5::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;
  }
  
  .section_93f5.video_next_08ff::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .section_93f5 {
    display: none;
  }
  
  .over_9335 {
    display: flex;
  }
  
  .paper_95f8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .new_f042,
  .paragraph_dynamic_9011 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .summary_huge_beea {
    position: relative;
  }
  
  .bronze_7da6 {
    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;
  }
  
  .silver-27f6[aria-expanded="true"] + .bronze_7da6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hero-slow-190b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tag-c941 {
    gap: 8px;
  }
  
  .new_f042 {
    display: none;
  }
  
  .paragraph_dynamic_9011 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .pressed-b4af img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.over_0738 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.hard-5458 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.fixed-02aa {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.card-next-0e9e {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

.paragraph-south-175f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .red-3bab {
    grid-template-columns: 1fr;
  }
  
  .secondary_f466 {
    font-size: 1.75rem;
  }
  
  .border_smooth_064f {
    order: -1;
    max-width: 100%;
  }
  
  .mask_upper_be24 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .secondary_f466 {
    font-size: 1.5rem;
  }
  
  .short_2664 {
    font-size: 1rem;
  }
  
  .hard-5458 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask_upper_be24 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.frame-new-6c80 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hovered-51cb {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-0620 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) {
  .bottom_1e11 {
    grid-template-columns: 1fr;
  }
  
  .message_lite_5bd4 {
    font-size: 1.75rem;
  }
  
  .right_0e97 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .message_lite_5bd4 {
    font-size: 1.5rem;
  }
  
  .right_0e97 h3 {
    font-size: 1.375rem;
  }
  
  .right_0e97 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.rough_2d67 {
  flex-shrink: 0;
}

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

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

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

.list_ef2f,
.steel-edd1,
.outline-north-1548 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_ef2f thead,
.steel-edd1 thead {
  background: var(--color-primary);
  color: white;
}

.list_ef2f th,
.list_ef2f td,
.steel-edd1 th,
.steel-edd1 td,
.outline-north-1548 th,
.outline-north-1548 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_ef2f th,
  .list_ef2f td,
  .steel-edd1 th,
  .steel-edd1 td,
  .outline-north-1548 th,
  .outline-north-1548 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_ef2f,
  .steel-edd1,
  .outline-north-1548 {
    min-width: 600px;
  }
}

.list_ef2f th,
.steel-edd1 th,
.outline-north-1548 th {
  font-weight: 600;
}

.list_ef2f tbody tr:hover,
.steel-edd1 tbody tr:hover,
.outline-north-1548 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.shade-right-c874 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-top-a17b {
  list-style: none;
  padding: 0;
}

.wrapper-top-a17b li {
  padding: var(--space-xs) 0;
}

.inner-5936 {
  color: #4caf50;
}

.element-center-8363 {
  color: #ff9800;
}

.tag-static-545c {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .aside-stale-809b {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_ec9e .frame-new-6c80 {
  width: 100%;
  background: white;
}

.pattern_yellow_0f6c .frame-new-6c80 {
  color: #667eea;
}

.row-gold-f5cf .frame-new-6c80 {
  color: #f5576c;
}

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

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

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

.out-21c0 {
  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);
}

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

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

@media (max-width: 768px) {
  .description_green_ba7d {
    padding: var(--space-md);
  }
  
  .fast_0219 {
    padding: var(--space-md);
  }
  
  .tall-1281 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.progress-current-390f,
.thumbnail-fast-e2a3,
.search_focused_1969,
.element-77a9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.modal-wood-796d {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.static-85a5:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.active_8e6b .filter_hot_8087 {
  background: #e8f5e9;
  color: var(--color-success);
}

.next-a111 .filter_hot_8087 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-61bf {
  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);
}

.nav_liquid_86c8 {
  text-align: center;
}

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

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

.tertiary-0091 .steel_53a9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.image-small-a17e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.focus-bright-db4d {
  margin-bottom: var(--space-xl);
}

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

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

.overlay-gold-1138 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.stone-7ca6 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.carousel_ecdc {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

.picture-rough-b402 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.static_7a2b[aria-expanded="true"] .container-e9d4 {
  transform: rotate(180deg);
}

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

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

.badge-action-30f2 ul,
.badge-action-30f2 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.badge-action-30f2 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.mask-8178,
.menu-9bdf {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.mask-8178 h4,
.menu-9bdf h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.mask-8178 ul,
.menu-9bdf ul {
  list-style: none;
  padding: 0;
}

.mask-8178 li,
.menu-9bdf li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.heading-orange-8d84 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.heading-orange-8d84 ul {
  list-style: none;
  padding: 0;
}

.heading-orange-8d84 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.hot-0418 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-lite-410a {
  list-style: none;
  padding: 0;
  margin: 0;
}

.description-lite-410a li {
  margin-bottom: var(--space-xs);
}

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

.description-lite-410a a:hover {
  color: white;
}

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

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

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

.north-96cf {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.north-96cf a:hover {
  color: white;
}

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

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

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

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

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

.large_9a1e .fixed-02aa {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.summary_194b a:hover {
  color: white;
}

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

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

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

.label_hot_b2ab a:hover {
  color: white;
}

.label-386b {
  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);
}

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

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

.shadow-center-e821 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .label-386b {
    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;
  }
  
  .secondary_f466 {
    font-size: 2rem;
  }
  
  .message_lite_5bd4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .red-3bab,
  .bottom_1e11 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .aside-stale-809b,
  .focused_5e61,
  .search_next_dfc3,
  .top_5d5c,
  .dirty_2323,
  .description_center_a9a2,
  .description-inner-d3ca,
  .layout_f2d5,
  .first_60fa {
    grid-template-columns: 1fr;
  }
  
  .info-last-865b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .left-f3d5 {
    padding: var(--space-lg) 0;
  }
  
  .backdrop_yellow_7b1d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .backdrop_yellow_7b1d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .frame-new-6c80 {
    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;
  }
  
  .info-last-865b {
    grid-template-columns: 1fr;
  }
  
  .surface_9923,
  .text_solid_dbf8,
  .icon_pink_7d3f {
    flex-direction: column;
    width: 100%;
  }
  
  .input_2b15,
  .footer_8ee4,
  .surface_9923 .frame-new-6c80,
  .text_solid_dbf8 .frame-new-6c80 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .secondary_f466 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .message_lite_5bd4 {
    font-size: 1.375rem;
  }
  
  .preview-under-0cd2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .item_6fc2,
  .element_advanced_e6a6,
  .gold_552e,
  .liquid-b12c,
  .right_b027 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sidebar_lower_bee8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .bright_0082 {
    gap: var(--space-xs);
  }
  
  .over_0738 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature_first_f478 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tertiary-0091 {
    width: 150px;
    height: 150px;
  }
  
  .notice-fresh-5167 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .photo_9e7c,
  .item-5aa5,
  .surface_9923,
  .hover_8b51,
  .header_f741,
  .title-dark-7433,
  .over_9335 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .left-f3d5 {
    page-break-inside: avoid;
  }
}

/* css-noise: e328 */
.widget-item-g2 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
