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

.gradient_7fdb:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.description_yellow_4116):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. */
.description_yellow_4116,
header,
.first-3b15,
.prev-ac15,
.clean_4255,
.message_c7de,
.mini-e7bd,
.clean-4bee,
.link_e40a {
  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
   ============================================ */
.description_yellow_4116 {
  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);
}

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

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

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

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

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

.detail-slow-75c9 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.fixed-1d33 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.black-8223 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pressed_1855 svg {
  flex-shrink: 0;
}

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

.black-2c99: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);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .fixed-1d33 {
    display: none;
  }
  
  .sort_fixed_673e {
    display: flex;
  }
  
  .pagination_9e9a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pressed_1855,
  .black-2c99 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .black-8223 {
    position: relative;
  }
  
  .avatar_easy_8960 {
    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_6643[aria-expanded="true"] + .avatar_easy_8960 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hero_blue_f132 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .frame_complex_7d17 {
    gap: 8px;
  }
  
  .pressed_1855 {
    display: none;
  }
  
  .black-2c99 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .detail-slow-75c9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.top_0da9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.message-red-a7a1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.message-red-a7a1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.tertiary-smooth-2cca {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.heading-lower-e614 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .first_51f0 {
    grid-template-columns: 1fr;
  }
  
  .yellow_9e80 {
    font-size: 1.75rem;
  }
  
  .row_f0c3 {
    order: -1;
    max-width: 100%;
  }
  
  .heading-lower-e614 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .yellow_9e80 {
    font-size: 1.5rem;
  }
  
  .widget-bottom-553b {
    font-size: 1rem;
  }
  
  .message-red-a7a1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .heading-lower-e614 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.steel-3d9e {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.shade-8a33 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-simple-05b0 {
  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);
}

.element-basic-4b7a {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-9296 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) {
  .popup-8522 {
    grid-template-columns: 1fr;
  }
  
  .dropdown-simple-05b0 {
    font-size: 1.75rem;
  }
  
  .out_5bdf {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dropdown-simple-05b0 {
    font-size: 1.5rem;
  }
  
  .out_5bdf h3 {
    font-size: 1.375rem;
  }
  
  .out_5bdf h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.lower-c1c1 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.main_15f8 {
  flex-shrink: 0;
}

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

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

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

.pro-cac8,
.fixed-4a5f,
.main_action_b2d2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pro-cac8 thead,
.fixed-4a5f thead {
  background: var(--color-primary);
  color: white;
}

.pro-cac8 th,
.pro-cac8 td,
.fixed-4a5f th,
.fixed-4a5f td,
.main_action_b2d2 th,
.main_action_b2d2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pro-cac8 th,
  .pro-cac8 td,
  .fixed-4a5f th,
  .fixed-4a5f td,
  .main_action_b2d2 th,
  .main_action_b2d2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pro-cac8,
  .fixed-4a5f,
  .main_action_b2d2 {
    min-width: 600px;
  }
}

.pro-cac8 th,
.fixed-4a5f th,
.main_action_b2d2 th {
  font-weight: 600;
}

.pro-cac8 tbody tr:hover,
.fixed-4a5f tbody tr:hover,
.main_action_b2d2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tertiary_inner_d086 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.hovered-cda2 {
  font-weight: 600;
  color: white;
}

.hard-765a {
  list-style: none;
  padding: 0;
}

.hard-765a li {
  padding: var(--space-xs) 0;
}

.badge-6a9d {
  color: #4caf50;
}

.prev_e2a7 {
  color: #ff9800;
}

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

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

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

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

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

.element-advanced-945b {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

@media (max-width: 768px) {
  .slider-action-2ae4 {
    grid-template-columns: 1fr;
  }
}

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

.focus-hard-400d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.message-fixed-d2b2 {
  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;
}

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

.focus-hard-400d p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_531e .info_blue_8fab {
  width: 100%;
  background: white;
}

.nav-wide-947f .info_blue_8fab {
  color: #667eea;
}

.dirty-74f0 .info_blue_8fab {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.form-fast-241e {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.modal-under-a943 {
  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);
}

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

.frame-yellow-63b6 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .new_79c2 {
    padding: var(--space-md);
  }
  
  .frame-yellow-63b6 {
    padding: var(--space-md);
  }
  
  .popup-1fb2 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.sort_wide_83b2,
.large_0cc6,
.box-simple-5b3a,
.photo-b166 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

.frame-thick-33bb {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.frame-thick-33bb:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.progress_easy_6868 .overlay-f740 {
  background: #e8f5e9;
  color: var(--color-success);
}

.sidebar_stale_c84e .overlay-f740 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .carousel-short-185d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.blue_ae31 {
  text-align: center;
}

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

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

.avatar-d53c .hovered-cda2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.icon-bronze-a579 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.button-wood-040c {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.active_7c7e {
  text-align: right;
}

.active_7c7e .old-8be0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-action-eb49 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop_copper_9012,
.tertiary-758d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.backdrop_copper_9012 h4,
.tertiary-758d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.backdrop_copper_9012 ul,
.tertiary-758d ul {
  list-style: none;
  padding: 0;
}

.backdrop_copper_9012 li,
.tertiary-758d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.badge-motion-8a1c {
  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);
}

.description_out_9f63 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-a209 .tertiary-smooth-2cca {
  color: #4caf50;
  font-size: 0.875rem;
}

.glass-2661 {
  list-style: none;
  padding: 0;
}

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

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

.glass-2661 a:hover {
  color: white;
}

.shade-over-f418 {
  list-style: none;
  padding: 0;
}

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

.shade-over-f418 a {
  color: #b0b0b0;
  text-decoration: none;
}

.shade-over-f418 a:hover {
  color: white;
}

.progress-dirty-2f91 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .progress-dirty-2f91 {
    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;
  }
  
  .yellow_9e80 {
    font-size: 2rem;
  }
  
  .dropdown-simple-05b0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .first_51f0,
  .popup-8522 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .slider-action-2ae4,
  .article-1d7b,
  .cool-e67f,
  .carousel-short-185d,
  .shade_fa29,
  .badge_4b66,
  .in_7ed6,
  .wide-673b {
    grid-template-columns: 1fr;
  }
  
  .main-green-a227 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .mini-e7bd {
    padding: var(--space-lg) 0;
  }
  
  .up_c77c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .up_c77c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .info_blue_8fab {
    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;
  }
  
  .main-green-a227 {
    grid-template-columns: 1fr;
  }
  
  .preview_a1a1,
  .label-c7be,
  .accent-first-1683 {
    flex-direction: column;
    width: 100%;
  }
  
  .steel-3d9e,
  .shade-8a33,
  .preview_a1a1 .info_blue_8fab,
  .label-c7be .info_blue_8fab {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .yellow_9e80 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dropdown-simple-05b0 {
    font-size: 1.375rem;
  }
  
  .card_0114 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .table-thick-eed0,
  .focus-hard-400d,
  .rough-9660,
  .active-35cb,
  .accordion-b637 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .filter_north_95e5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .list_tiny_44f4 {
    gap: var(--space-xs);
  }
  
  .top_0da9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accent_mini_3845 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .avatar-d53c {
    width: 150px;
    height: 150px;
  }
  
  .liquid-0952 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .description_yellow_4116,
  .first-3b15,
  .preview_a1a1,
  .description_soft_6a52,
  .clean-4bee,
  .link_e40a,
  .sort_fixed_673e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .mini-e7bd {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.article-bottom-6c3d {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 7702 */
.widget-item-a3 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.0;
}
