/* ============================================
   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)
   ============================================ */
.basic-5f55 {
  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;
}

.basic-5f55:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.south_6131,
header,
.pressed_4da0,
.outer-8871,
.fixed_1d19,
.down-3a17,
.wrapper-4f32,
.element_huge_1c67,
.content_df65 {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

.overlay-first-83e8 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.aside-narrow-0c7e img {
  height: 36px;
  width: auto;
  display: block;
}

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

.label_1774 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-6af9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .label_1774 {
    display: none;
  }
  
  .modal_focused_cb90 {
    display: flex;
  }
  
  .progress_3b0a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .element-6af9,
  .list_9e1d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .photo_b0bb {
    position: relative;
  }
  
  .bronze_4bc2 {
    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;
  }
  
  .highlight_upper_6549[aria-expanded="true"] + .bronze_4bc2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .article_cold_73eb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .form-a603 {
    gap: 8px;
  }
  
  .element-6af9 {
    display: none;
  }
  
  .list_9e1d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .aside-narrow-0c7e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.breadcrumb-9fd2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-9fd2 svg {
  flex-shrink: 0;
}

.breadcrumb-9fd2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb-9fd2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice-right-9977 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.chip-4dc1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upper-f54c {
  position: relative;
  text-align: center;
}

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

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

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

.logo-up-16b5 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .background_action_a35a {
    grid-template-columns: 1fr;
  }
  
  .focus-aaff {
    font-size: 1.75rem;
  }
  
  .chip-4dc1 {
    order: -1;
    max-width: 100%;
  }
  
  .upper-f54c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .focus-aaff {
    font-size: 1.5rem;
  }
  
  .layout_fa65 {
    font-size: 1rem;
  }
  
  .wide_a65b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .upper-f54c {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.hot-447d {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.backdrop-plasma-96c0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

.slider-lite-75a6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.tooltip-fc0f 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;
}

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

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

.notice-hard-08e8 {
  background: var(--color-bg-section);
}

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

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

.grid-liquid-555e {
  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);
}

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

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

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

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

.status-78a6 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.status-78a6 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);
}

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

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

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

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

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

.status-78a6 strong {
  font-weight: 600;
  color: var(--color-text);
}

.status-78a6 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.status-78a6 a:hover {
  color: var(--color-primary-dark);
}

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

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

.badge_left_000b 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) {
  .box-06aa {
    grid-template-columns: 1fr;
  }
  
  .grid-liquid-555e {
    font-size: 1.75rem;
  }
  
  .status-78a6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-liquid-555e {
    font-size: 1.5rem;
  }
  
  .status-78a6 h3 {
    font-size: 1.375rem;
  }
  
  .status-78a6 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.plasma-6dd8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.notification-8b09 {
  flex-shrink: 0;
}

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

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

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

.hidden-large-2953,
.title_pink_c93b,
.active_middle_a966 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hidden-large-2953 thead,
.title_pink_c93b thead {
  background: var(--color-primary);
  color: white;
}

.hidden-large-2953 th,
.hidden-large-2953 td,
.title_pink_c93b th,
.title_pink_c93b td,
.active_middle_a966 th,
.active_middle_a966 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hidden-large-2953 th,
  .hidden-large-2953 td,
  .title_pink_c93b th,
  .title_pink_c93b td,
  .active_middle_a966 th,
  .active_middle_a966 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hidden-large-2953,
  .title_pink_c93b,
  .active_middle_a966 {
    min-width: 600px;
  }
}

.hidden-large-2953 th,
.title_pink_c93b th,
.active_middle_a966 th {
  font-weight: 600;
}

.hidden-large-2953 tbody tr:hover,
.title_pink_c93b tbody tr:hover,
.active_middle_a966 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.nav-gold-2509 h4 {
  color: white;
}

.button-over-03f5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.plasma-cf65:last-child {
  border-bottom: none;
}

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

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

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

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

.center-767b:hover {
  text-decoration: underline;
}

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

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

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

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

.lower-2bdc {
  list-style: none;
  padding: 0;
}

.lower-2bdc li {
  padding: var(--space-xs) 0;
}

.caption_first_2eee {
  color: #4caf50;
}

.button-6b85 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.mask-fluid-5f33:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.disabled-62b5 {
  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;
}

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

.mask-fluid-5f33 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-e0a6 .preview_pro_b2af {
  width: 100%;
  background: white;
}

.paragraph-0fff .preview_pro_b2af {
  color: #667eea;
}

.easy-7852 .preview_pro_b2af {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.avatar-blue-07dc {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.panel-28d9 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.wrapper-up-cd8e {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .panel-28d9 {
    padding: var(--space-md);
  }
  
  .wrapper-up-cd8e {
    padding: var(--space-md);
  }
  
  .progress_focused_b442 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.clean_6ad4,
.panel-center-0634,
.message-middle-bd61,
.badge-e272 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.hero-289d:hover {
  background: var(--color-primary-dark);
}

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

.widget-left-1536 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.static-1e87 {
  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);
}

.right-2124 .static-1e87 {
  background: #e8f5e9;
  color: var(--color-success);
}

.fresh-bed1 .static-1e87 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lite_9b53 {
  text-align: center;
}

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

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

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

.wrapper-under-0a55 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.panel-active-6cbb p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_3e77 {
  text-align: right;
}

.article_3e77 .modal-east-fd64 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.mask-bronze-9e94 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.picture-iron-0532 {
  background: #e8f5e9;
  color: #2e7d32;
}

.list-8049 {
  background: #e3f2fd;
  color: #1565c0;
}

.gallery-static-db47 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.widget-action-3f4b strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.tooltip-c88e[aria-expanded="true"] .light-bcf7 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown_1073 ul,
.media_center_2e46 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink-9972 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.column_prev_296d {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

.filter_under_7b95 .title_fb04 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.inner_b075 a:hover {
  color: white;
}

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

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

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

.disabled_3bb9 a:hover {
  color: white;
}

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

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

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

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

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

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

.background-e9b9:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .frame-df51 {
    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;
  }
  
  .focus-aaff {
    font-size: 2rem;
  }
  
  .grid-liquid-555e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .background_action_a35a,
  .box-06aa {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .purple_e4d6,
  .steel_7d4e,
  .menu-down-f638,
  .progress_683c,
  .disabled_883d,
  .accent_4913,
  .south_2d01,
  .hero-5dda {
    grid-template-columns: 1fr;
  }
  
  .form_b6ac {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .wrapper-4f32 {
    padding: var(--space-lg) 0;
  }
  
  .tooltip-fc0f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tooltip-fc0f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .preview_pro_b2af {
    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;
  }
  
  .form_b6ac {
    grid-template-columns: 1fr;
  }
  
  .notice-right-9977,
  .widget-purple-8644,
  .texture-tall-e680 {
    flex-direction: column;
    width: 100%;
  }
  
  .hot-447d,
  .outline_891e,
  .notice-right-9977 .preview_pro_b2af,
  .widget-purple-8644 .preview_pro_b2af {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .focus-aaff {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .grid-liquid-555e {
    font-size: 1.375rem;
  }
  
  .yellow-b6bd {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .backdrop-plasma-96c0,
  .mask-fluid-5f33,
  .plasma-c20d,
  .button-under-8be8,
  .frame_3068 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .focus-3638 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .stale_4cd8 {
    gap: var(--space-xs);
  }
  
  .breadcrumb-9fd2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .search_under_0f6f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .banner_e79a {
    width: 150px;
    height: 150px;
  }
  
  .static_dcd2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .south_6131,
  .pressed_4da0,
  .notice-right-9977,
  .overlay-2783,
  .element_huge_1c67,
  .content_df65,
  .modal_focused_cb90 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .wrapper-4f32 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.alert-806f {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 205d */
.widget-item-z2 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
