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

.preview_small_0afa:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.label-purple-5e7b):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. */
.label-purple-5e7b,
header,
.section_gold_c110,
.paper-97f6,
.overlay-center-181a,
.overlay_south_f7a4,
.filter_46b5,
.narrow_c143,
.tiny-1447 {
  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
   ============================================ */
.label-purple-5e7b {
  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);
}

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

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

/* Scrolled state */
.label-purple-5e7b.short-7e3b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.background-1ee8 img {
  height: 36px;
  width: auto;
  display: block;
}

.fast-8eaa {
  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;
}

.background-9071 {
  flex: 1;
}

.main-basic-040b {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

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

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

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

/* Dropdown Navigation */
.small-79a4 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.nav_south_bb54 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .background-9071::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .background-9071.highlight_under_b9c5 {
    display: block;
    right: 0;
  }
  
  .main-basic-040b {
    flex-direction: column;
    gap: 0;
  }
  
  .photo_a02e {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .background-9071::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;
  }
  
  .background-9071.highlight_under_b9c5::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .background-9071 {
    display: none;
  }
  
  .notification-dd0b {
    display: flex;
  }
  
  .fast-8eaa {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .nav_south_bb54,
  .fixed-1851 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .small-79a4 {
    position: relative;
  }
  
  .list_84ea {
    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;
  }
  
  .surface_tall_3d05[aria-expanded="true"] + .list_84ea {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .label-pro-2082 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .column_bronze_5f08 {
    gap: 8px;
  }
  
  .nav_south_bb54 {
    display: none;
  }
  
  .fixed-1851 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .background-1ee8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.header_0004 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-tall-5633 {
  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;
}

.solid-3d5c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.solid-3d5c strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.over-ea89 {
  position: relative;
  text-align: center;
}

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

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

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

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

.detail-paper-9f6c {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .disabled-6fa7 {
    grid-template-columns: 1fr;
  }
  
  .block_11bb {
    font-size: 1.75rem;
  }
  
  .alert-bebc {
    order: -1;
    max-width: 100%;
  }
  
  .over-ea89 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .block_11bb {
    font-size: 1.5rem;
  }
  
  .popup-narrow-6126 {
    font-size: 1rem;
  }
  
  .selected_f188 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .over-ea89 {
    max-width: 250px;
  }
}

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

.menu-stale-5387 {
  background: var(--color-primary);
  color: white;
}

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

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

.small-5be4:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-hard-6444 {
  background: var(--color-bg-section);
}

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

.overlay-379b {
  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);
}

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

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

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

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

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

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

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

.cool-78ff 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);
}

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

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

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

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

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

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

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

.cool-78ff a:hover {
  color: var(--color-primary-dark);
}

.tiny-4c13 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.tiny-4c13 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) {
  .north-0e15 {
    grid-template-columns: 1fr;
  }
  
  .silver-a02a {
    font-size: 1.75rem;
  }
  
  .cool-78ff {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .silver-a02a {
    font-size: 1.5rem;
  }
  
  .cool-78ff h3 {
    font-size: 1.375rem;
  }
  
  .cool-78ff h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.label-wide-5496 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.alert-solid-4cae strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.container-wood-4f1f {
  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;
}

.media-ccd2 {
  flex-shrink: 0;
}

.photo-brown-12f5 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.chip-thick-9e6b,
.table-fdc3,
.notification-24a6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chip-thick-9e6b thead,
.table-fdc3 thead {
  background: var(--color-primary);
  color: white;
}

.chip-thick-9e6b th,
.chip-thick-9e6b td,
.table-fdc3 th,
.table-fdc3 td,
.notification-24a6 th,
.notification-24a6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .chip-thick-9e6b th,
  .chip-thick-9e6b td,
  .table-fdc3 th,
  .table-fdc3 td,
  .notification-24a6 th,
  .notification-24a6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .chip-thick-9e6b,
  .table-fdc3,
  .notification-24a6 {
    min-width: 600px;
  }
}

.chip-thick-9e6b th,
.table-fdc3 th,
.notification-24a6 th {
  font-weight: 600;
}

.chip-thick-9e6b tbody tr:hover,
.table-fdc3 tbody tr:hover,
.notification-24a6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.accordion-left-6c22 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.badge_simple_6983 h4 {
  color: white;
}

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

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

.module-f343:last-child {
  border-bottom: none;
}

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

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

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

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

.table-inner-1b65:hover {
  text-decoration: underline;
}

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

.button-6b9b {
  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);
}

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

.box-cf5c {
  font-weight: 600;
  color: white;
}

.slider-hard-d175 {
  list-style: none;
  padding: 0;
}

.slider-hard-d175 li {
  padding: var(--space-xs) 0;
}

.primary-iron-a9a4 {
  color: #4caf50;
}

.element_yellow_a2ac {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .accordion-large-69a0 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-hard-78eb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.item-hard-78eb ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.item-hard-78eb li {
  padding: var(--space-xs) 0;
  color: white;
}

.item-hard-78eb .component_537b {
  width: 100%;
  background: white;
}

.backdrop_rough_5463 .component_537b {
  color: #667eea;
}

.avatar_595c .component_537b {
  color: #f5576c;
}

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

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

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

.summary-lower-f7be {
  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);
}

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

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

@media (max-width: 768px) {
  .paragraph_50f5 {
    padding: var(--space-md);
  }
  
  .chip_brown_9a38 {
    padding: var(--space-md);
  }
  
  .over-5ec8 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.fixed_5278,
.avatar_8800,
.yellow-9fbb,
.warm-9f9e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.progress-90bd:hover {
  background: var(--color-primary-dark);
}

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

.inner-03f3 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.frame_a781 .prev-d6dc {
  background: #e8f5e9;
  color: var(--color-success);
}

.active_c284 .prev-d6dc {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.preview-over-9163 {
  margin-top: var(--space-xxl);
}

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

.badge-out-4b6f {
  text-align: center;
}

.pagination-medium-04e1 {
  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);
}

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

.pagination-medium-04e1 .box-cf5c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.message-upper-0d82 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.link-complex-d6b2 {
  color: var(--color-text-light);
}

.highlight-dirty-98ea {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.gradient-thick-db79 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.active-copper-79bb {
  text-align: right;
}

.active-copper-79bb .hover-dim-ae46 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.shadow-dynamic-8b7e {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.panel-bronze-446e {
  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);
}

.panel-bronze-446e:hover {
  background: var(--color-bg-alt);
}

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

.panel-bronze-446e[aria-expanded="true"] .media_motion_b668 {
  transform: rotate(180deg);
}

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

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

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

.fluid-1cbe li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.tag-tall-74de,
.orange_2cae {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tag-tall-74de h4,
.orange_2cae h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tag-tall-74de ul,
.orange_2cae ul {
  list-style: none;
  padding: 0;
}

.tag-tall-74de li,
.orange_2cae li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.active-mini-d3e6 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.out-a6b2 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.last-6b6b .primary_upper_f41c {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.first_1423 a:hover {
  color: white;
}

.disabled-static-5b94 {
  list-style: none;
  padding: 0;
}

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

.disabled-static-5b94 a {
  color: #b0b0b0;
  text-decoration: none;
}

.disabled-static-5b94 a:hover {
  color: white;
}

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

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

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

.overlay-action-f04f {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .link_yellow_eb61 {
    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;
  }
  
  .block_11bb {
    font-size: 2rem;
  }
  
  .silver-a02a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .disabled-6fa7,
  .north-0e15 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accordion-large-69a0,
  .link_bdbb,
  .image-f7dd,
  .info-ab2b,
  .first-73a1,
  .pro_ef0a,
  .module_02c2,
  .button-ffb9 {
    grid-template-columns: 1fr;
  }
  
  .feature-71bb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .filter_46b5 {
    padding: var(--space-lg) 0;
  }
  
  .section_43b3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .section_43b3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .component_537b {
    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;
  }
  
  .feature-71bb {
    grid-template-columns: 1fr;
  }
  
  .photo_silver_b3ac,
  .paragraph-bright-f633,
  .hovered-f0f4 {
    flex-direction: column;
    width: 100%;
  }
  
  .avatar-c4c5,
  .image_59f0,
  .photo_silver_b3ac .component_537b,
  .paragraph-bright-f633 .component_537b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .block_11bb {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .silver-a02a {
    font-size: 1.375rem;
  }
  
  .menu-white-a2df {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .pink-cf3d,
  .huge_566f,
  .last_2f5e,
  .sidebar_dirty_9252,
  .pro-6e6c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .card_under_993e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .in-13ad {
    gap: var(--space-xs);
  }
  
  .header_0004 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .button-6b9b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pagination-medium-04e1 {
    width: 150px;
    height: 150px;
  }
  
  .feature-east-e69a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .label-purple-5e7b,
  .section_gold_c110,
  .photo_silver_b3ac,
  .bronze_d3c7,
  .narrow_c143,
  .tiny-1447,
  .notification-dd0b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .filter_46b5 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 3db6 */
.promo-block-c4 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
