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

.down-591c:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.prev_4f73):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. */
.prev_4f73,
header,
.mask_3447,
.lower-840a,
.tabs-31d5,
.box-north-c75b,
.widget_1f74,
.layout_dirty_18c8,
.notification-81ca {
  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
   ============================================ */
.prev_4f73 {
  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);
}

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

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

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

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

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

.focus-white-b7cd img {
  height: 36px;
  width: auto;
  display: block;
}

.hidden-101d {
  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;
}

.dark-4b9f {
  flex: 1;
}

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

.fixed_b362 {
  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_b362:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

.carousel-slow-3aa5 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.widget-complex-b37b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .dark-4b9f {
    display: none;
  }
  
  .item_fd94 {
    display: flex;
  }
  
  .hidden-101d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .widget-complex-b37b,
  .red_bf39 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .article_iron_c050 {
    position: relative;
  }
  
  .table_action_2e9e {
    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;
  }
  
  .menu_east_336a[aria-expanded="true"] + .table_action_2e9e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slow-869e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .carousel-slow-3aa5 {
    gap: 8px;
  }
  
  .widget-complex-b37b {
    display: none;
  }
  
  .red_bf39 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .focus-white-b7cd img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.status-2974 svg {
  flex-shrink: 0;
}

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

.status-2974 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.sidebar-85ee {
  color: var(--color-text-lighter);
}

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

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

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

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

@media (max-width: 768px) {
  .main-top-2d26 {
    grid-template-columns: 1fr;
  }
}

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

.sidebar-358c {
  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;
}

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

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

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

.link-last-66f8 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.heading-bright-686c {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .yellow_8476 {
    grid-template-columns: 1fr;
  }
  
  .next_d677 {
    font-size: 1.75rem;
  }
  
  .surface-b050 {
    order: -1;
    max-width: 100%;
  }
  
  .disabled_clean_fa20 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .next_d677 {
    font-size: 1.5rem;
  }
  
  .disabled_light_e6a2 {
    font-size: 1rem;
  }
  
  .blue_888a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .disabled_clean_fa20 {
    max-width: 250px;
  }
}

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

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

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

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

.accordion-70f3:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.active-north-5a99 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.row-15f4 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

.form-complex-623a {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.accent-67e1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module_7715 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) {
  .notification_center_38ce {
    grid-template-columns: 1fr;
  }
  
  .blue_7d21 {
    font-size: 1.75rem;
  }
  
  .icon-1781 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.surface_warm_1643 {
  flex-shrink: 0;
}

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

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

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

.thumbnail-dirty-8f7b,
.last-7843,
.smooth-f9cb {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.thumbnail-dirty-8f7b thead,
.last-7843 thead {
  background: var(--color-primary);
  color: white;
}

.thumbnail-dirty-8f7b th,
.thumbnail-dirty-8f7b td,
.last-7843 th,
.last-7843 td,
.smooth-f9cb th,
.smooth-f9cb td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .thumbnail-dirty-8f7b th,
  .thumbnail-dirty-8f7b td,
  .last-7843 th,
  .last-7843 td,
  .smooth-f9cb th,
  .smooth-f9cb td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .thumbnail-dirty-8f7b,
  .last-7843,
  .smooth-f9cb {
    min-width: 600px;
  }
}

.thumbnail-dirty-8f7b th,
.last-7843 th,
.smooth-f9cb th {
  font-weight: 600;
}

.thumbnail-dirty-8f7b tbody tr:hover,
.last-7843 tbody tr:hover,
.smooth-f9cb tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.avatar_middle_befd h4 {
  color: white;
}

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

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

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

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

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

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

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

.silver-dbcf:hover {
  text-decoration: underline;
}

.block-over-6bb4 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.label-rough-b06e {
  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);
}

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

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

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

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

.card-tall-502f {
  color: #4caf50;
}

.active-03cc {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.hidden-pink-2def:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.hidden-pink-2def p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east-66b0 .image_pressed_a47a {
  width: 100%;
  background: white;
}

.frame_fdda .image_pressed_a47a {
  color: #667eea;
}

.button_advanced_a171 .image_pressed_a47a {
  color: #f5576c;
}

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

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

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

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

.hard-3de5 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .hard-3de5 {
    padding: var(--space-md);
  }
  
  .status_5682 {
    padding: var(--space-md);
  }
  
  .lite_f8b8 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.primary_4bea,
.hot-4618,
.texture-bd7f,
.active_outer_7a26 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.info-2a46:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.glass-dfed .basic_5896 {
  background: #e8f5e9;
  color: var(--color-success);
}

.input_fc1c .basic_5896 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.modal-full-e2a3 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.thumbnail-in-361b {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.fast_c0e4 {
  text-align: center;
}

.table-hovered-32c0 {
  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);
}

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

.table-hovered-32c0 .avatar_up_fffc {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.surface-bronze-1928 {
  margin-bottom: var(--space-xl);
}

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

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

.picture-north-6693 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column-prev-d653 {
  text-align: right;
}

.column-prev-d653 .section-585f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.clean-61ff {
  background: #e8f5e9;
  color: #2e7d32;
}

.dropdown-glass-2dd0 {
  background: #e3f2fd;
  color: #1565c0;
}

.focus-glass-4362 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-0c93 {
  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);
}

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

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

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

.logo-pink-8357,
.focused-f6b1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.logo-pink-8357 h4,
.focused-f6b1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.logo-pink-8357 ul,
.focused-f6b1 ul {
  list-style: none;
  padding: 0;
}

.logo-pink-8357 li,
.focused-f6b1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.medium-44b2 {
  font-style: italic;
}

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

.border-blue-d996 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-e3b9 .text_pressed_147a {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.dropdown_silver_298c a:hover {
  color: white;
}

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

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

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

.row_medium_8a2b a:hover {
  color: white;
}

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

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

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

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

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

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

.down-4b39:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .popup_hard_dcd4 {
    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;
  }
  
  .next_d677 {
    font-size: 2rem;
  }
  
  .blue_7d21 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .yellow_8476,
  .notification_center_38ce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .outline-rough-011e,
  .dynamic_a43b,
  .mask-lower-f4db,
  .border-complex-6415,
  .video_steel_e838,
  .basic-d232,
  .solid_2352,
  .out-7e44 {
    grid-template-columns: 1fr;
  }
  
  .info_b5f2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .widget_1f74 {
    padding: var(--space-lg) 0;
  }
  
  .gradient_green_eba6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gradient_green_eba6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .image_pressed_a47a {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .info_b5f2 {
    grid-template-columns: 1fr;
  }
  
  .link-last-66f8,
  .aside_complex_ae14,
  .popup_plasma_7982 {
    flex-direction: column;
    width: 100%;
  }
  
  .active-north-5a99,
  .row-15f4,
  .link-last-66f8 .image_pressed_a47a,
  .aside_complex_ae14 .image_pressed_a47a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .next_d677 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .blue_7d21 {
    font-size: 1.375rem;
  }
  
  .carousel-f848 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .top-84d5,
  .hidden-pink-2def,
  .outline-brown-3191,
  .texture-right-b74d,
  .advanced_e321 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .aside-6c02 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .black_d10e {
    gap: var(--space-xs);
  }
  
  .status-2974 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .label-rough-b06e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .table-hovered-32c0 {
    width: 150px;
    height: 150px;
  }
  
  .heading_d9f9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .prev_4f73,
  .mask_3447,
  .link-last-66f8,
  .border-blue-d996,
  .layout_dirty_18c8,
  .notification-81ca,
  .item_fd94 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .widget_1f74 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.up-20a2 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 16bb */
.phantom-card-t9 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
