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

.status_active_bdd9:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.outline_smooth_a727):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. */
.outline_smooth_a727,
header,
.dim_5b28,
.aside-glass-9c30,
.input_lower_2b11,
.block-994d,
.bottom_bc04,
.background-lower-7cd2,
.summary_3579 {
  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
   ============================================ */
.outline_smooth_a727 {
  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);
}

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

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

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

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

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

.narrow_10a4 img {
  height: 36px;
  width: auto;
  display: block;
}

.grid-current-0bb7 {
  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;
}

.column_blue_5d5b {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.tall-79fd {
  position: relative;
}

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

.heading-lower-bc2a svg {
  transition: transform 0.2s ease;
}

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

.element-wide-877c {
  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;
}

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

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

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

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

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

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

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

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

.fast_0069 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.label_rough_1fd3[aria-expanded="true"] .blue-60df:nth-child(2) {
  opacity: 0;
}

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

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

  .column_blue_5d5b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .column_blue_5d5b.gallery-04fb {
    display: block;
    right: 0;
  }
  
  .label-2ba0 {
    flex-direction: column;
    gap: 0;
  }
  
  .fixed_fadc {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .column_blue_5d5b::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;
  }
  
  .column_blue_5d5b.gallery-04fb::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .column_blue_5d5b {
    display: none;
  }
  
  .label_rough_1fd3 {
    display: flex;
  }
  
  .grid-current-0bb7 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fast_0069,
  .notice_279e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tall-79fd {
    position: relative;
  }
  
  .element-wide-877c {
    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;
  }
  
  .heading-lower-bc2a[aria-expanded="true"] + .element-wide-877c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .steel_897d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.input-e651 svg {
  flex-shrink: 0;
}

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

.input-e651 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.tiny-fcad a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.sidebar-out-4491 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .modal-422f {
    grid-template-columns: 1fr;
  }
  
  .tag_over_dac2 {
    font-size: 1.75rem;
  }
  
  .pressed-5134 {
    order: -1;
    max-width: 100%;
  }
  
  .banner_dae7 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tag_over_dac2 {
    font-size: 1.5rem;
  }
  
  .text-pressed-7e88 {
    font-size: 1rem;
  }
  
  .tiny-fcad {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .banner_dae7 {
    max-width: 250px;
  }
}

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

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

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

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

.pink-7d54:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.row-dark-7387 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall-1373 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stale_9c57 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) {
  .message_huge_5588 {
    grid-template-columns: 1fr;
  }
  
  .nav_24b4 {
    font-size: 1.75rem;
  }
  
  .title_6414 {
    max-width: 100%;
  }
}

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

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

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

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

.in-07b6 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.wrapper_pro_07f6 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

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

.tooltip-dark-80ba strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.plasma-0084,
.wrapper_down_78b5,
.copper_8380 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.plasma-0084 thead,
.wrapper_down_78b5 thead {
  background: var(--color-primary);
  color: white;
}

.plasma-0084 th,
.plasma-0084 td,
.wrapper_down_78b5 th,
.wrapper_down_78b5 td,
.copper_8380 th,
.copper_8380 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .plasma-0084 th,
  .plasma-0084 td,
  .wrapper_down_78b5 th,
  .wrapper_down_78b5 td,
  .copper_8380 th,
  .copper_8380 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .plasma-0084,
  .wrapper_down_78b5,
  .copper_8380 {
    min-width: 600px;
  }
}

.plasma-0084 th,
.wrapper_down_78b5 th,
.copper_8380 th {
  font-weight: 600;
}

.plasma-0084 tbody tr:hover,
.wrapper_down_78b5 tbody tr:hover,
.copper_8380 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.under_cce4 h4 {
  color: white;
}

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

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

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

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

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

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

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

.plasma-e3fc:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.advanced_9bd8 {
  color: #4caf50;
}

.shade_gas_02cd {
  color: #ff9800;
}

.texture-huge-863d {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

.primary-pro-9c4e {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

.feature-pressed-682a h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_full_1c20 .alert_b8cd {
  width: 100%;
  background: white;
}

.box_inner_75d8 .alert_b8cd {
  color: #667eea;
}

.fast-e3a9 .alert_b8cd {
  color: #f5576c;
}

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

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

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

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

.gallery-active-c31a h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .gallery-active-c31a {
    padding: var(--space-md);
  }
  
  .heading_solid_bac0 {
    padding: var(--space-md);
  }
  
  .feature-yellow-9950 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.aside_fixed_8b59,
.tertiary-a34b,
.component_cb3e,
.picture_6a65 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.focus-in-e798:hover {
  background: var(--color-primary-dark);
}

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

.pattern-tiny-f0f6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.thick_f8c8 .complex-fa50 {
  background: #e8f5e9;
  color: var(--color-success);
}

.pro_923a .complex-fa50 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.disabled-90a6 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.box-5d8c {
  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);
}

.overlay_a442 {
  text-align: center;
}

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

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

.search-fb37 .grid_3ce5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-short-0b36 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

.tag-basic-c3d9 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.table-outer-f3bc {
  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;
}

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

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

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

.secondary-49e9 {
  text-align: right;
}

.secondary-49e9 .soft-dbfe {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.button-paper-b340 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.list-59ec {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-b9d9[aria-expanded="true"] .outline-dacd {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-pink-8ae1,
.border_pro_69a1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.border-pink-8ae1 h4,
.border_pro_69a1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.border-pink-8ae1 ul,
.border_pro_69a1 ul {
  list-style: none;
  padding: 0;
}

.border-pink-8ae1 li,
.border_pro_69a1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.stale-8ee5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.shadow-simple-1595 {
  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);
}

.solid_8d6b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main_out_3e7e .out_c2b0 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.progress_5fd0 a:hover {
  color: white;
}

.hard-03f7 {
  list-style: none;
  padding: 0;
}

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

.hard-03f7 a {
  color: #b0b0b0;
  text-decoration: none;
}

.hard-03f7 a:hover {
  color: white;
}

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

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

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

.progress-orange-c2e2 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.badge-9708:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accordion_9ad1 {
    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;
  }
  
  .tag_over_dac2 {
    font-size: 2rem;
  }
  
  .nav_24b4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .modal-422f,
  .message_huge_5588 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .form-focused-c730,
  .widget-6572,
  .progress-f9e4,
  .section-a951,
  .tag_lite_21f4,
  .outer-6ae0,
  .dynamic_b1a1,
  .popup_inner_dd56 {
    grid-template-columns: 1fr;
  }
  
  .title-2c0c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .bottom_bc04 {
    padding: var(--space-lg) 0;
  }
  
  .tall-1373 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tall-1373 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .alert_b8cd {
    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;
  }
  
  .title-2c0c {
    grid-template-columns: 1fr;
  }
  
  .picture_c0fd,
  .logo_4ab5,
  .column-complex-6b27 {
    flex-direction: column;
    width: 100%;
  }
  
  .panel-c11a,
  .row-dark-7387,
  .picture_c0fd .alert_b8cd,
  .logo_4ab5 .alert_b8cd {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tag_over_dac2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .nav_24b4 {
    font-size: 1.375rem;
  }
  
  .huge-08fe {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .east-5040,
  .simple-639c,
  .media-full-a0c5,
  .module-8ca3,
  .preview_bda5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .badge_motion_b7b9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .active-north-e5f0 {
    gap: var(--space-xs);
  }
  
  .input-e651 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .input_bright_1151 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .search-fb37 {
    width: 150px;
    height: 150px;
  }
  
  .gallery_04c9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .outline_smooth_a727,
  .dim_5b28,
  .picture_c0fd,
  .modal-7dbd,
  .background-lower-7cd2,
  .summary_3579,
  .label_rough_1fd3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .bottom_bc04 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.chip-brown-9c7b {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: a68c */
.promo-block-m2 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
