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

.logo_b67b:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.west-561b):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. */
.west-561b,
header,
.sort_f4ab,
.card-pressed-b908,
.smooth-c1c6,
.shade_ad95,
.widget-297d,
.cold-5444,
.footer_east_5900 {
  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
   ============================================ */
.west-561b {
  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);
}

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

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

/* Scrolled state */
.west-561b.status-blue-c8e6 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.south-051d {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-advanced-f7a2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .south-051d {
    display: none;
  }
  
  .row_8a87 {
    display: flex;
  }
  
  .light_3a1f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .form-advanced-f7a2,
  .in_2360 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .slow_0568 {
    position: relative;
  }
  
  .detail_up_7c06 {
    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;
  }
  
  .photo_9eb6[aria-expanded="true"] + .detail_up_7c06 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .caption-eae8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .module_west_08d5 {
    gap: 8px;
  }
  
  .form-advanced-f7a2 {
    display: none;
  }
  
  .in_2360 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .list_e997 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.status-large-8acc {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-large-8acc svg {
  flex-shrink: 0;
}

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

.status-large-8acc a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.feature-pressed-c840 a {
  color: var(--color-primary);
  text-decoration: none;
}

.feature-pressed-c840 a:hover {
  text-decoration: underline;
}

.bronze-91a9 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.gradient-99e3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.border-8594 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .grid_complex_8790 {
    grid-template-columns: 1fr;
  }
  
  .in-67bd {
    font-size: 1.75rem;
  }
  
  .simple-c578 {
    order: -1;
    max-width: 100%;
  }
  
  .border-8594 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .in-67bd {
    font-size: 1.5rem;
  }
  
  .widget-c9c3 {
    font-size: 1rem;
  }
  
  .feature-pressed-c840 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .border-8594 {
    max-width: 250px;
  }
}

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

.filter-smooth-3b8b {
  background: var(--color-primary);
  color: white;
}

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

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

.bottom-6d9b:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.basic-90fc {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.lower-39d4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.surface-32cd {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-ebf1 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) {
  .easy-52e7 {
    grid-template-columns: 1fr;
  }
  
  .photo_pressed_9ba5 {
    font-size: 1.75rem;
  }
  
  .hard_a916 {
    max-width: 100%;
  }
}

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

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

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

.tertiary-narrow-caa3 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.table-solid-bf9b {
  flex-shrink: 0;
}

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

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

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

.medium-e53c,
.shadow_e0f4,
.in-b89a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.medium-e53c thead,
.shadow_e0f4 thead {
  background: var(--color-primary);
  color: white;
}

.medium-e53c th,
.medium-e53c td,
.shadow_e0f4 th,
.shadow_e0f4 td,
.in-b89a th,
.in-b89a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .medium-e53c th,
  .medium-e53c td,
  .shadow_e0f4 th,
  .shadow_e0f4 td,
  .in-b89a th,
  .in-b89a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .medium-e53c,
  .shadow_e0f4,
  .in-b89a {
    min-width: 600px;
  }
}

.medium-e53c th,
.shadow_e0f4 th,
.in-b89a th {
  font-weight: 600;
}

.medium-e53c tbody tr:hover,
.shadow_e0f4 tbody tr:hover,
.in-b89a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.stale_0020 h4 {
  color: white;
}

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

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

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

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

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

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

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

.module-liquid-2a37:hover {
  text-decoration: underline;
}

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

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

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

.input-steel-4528 {
  font-weight: 600;
  color: white;
}

.summary-c9c1 {
  list-style: none;
  padding: 0;
}

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

.wide_2413 {
  color: #4caf50;
}

.photo-complex-dca9 {
  color: #ff9800;
}

.right-219e {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stale-65b5 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.bright_ce5c .liquid_371e {
  width: 100%;
  background: white;
}

.status-white-38ef .liquid_371e {
  color: #667eea;
}

.modal-e73c .liquid_371e {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .logo_rough_a099 {
    padding: var(--space-md);
  }
  
  .down-fc2c {
    padding: var(--space-md);
  }
  
  .tiny_d348 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.picture_medium_6e03,
.popup-2a2f,
.carousel-wide-5b48,
.thick_f34c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.full-e598:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.caption-5a16 {
  border-color: var(--color-success);
}

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

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

.caption-5a16 .status_fast_a767 {
  background: #e8f5e9;
  color: var(--color-success);
}

.mini_e406 .status_fast_a767 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.table-orange-4669 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.banner-688f {
  margin-top: var(--space-xxl);
}

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

.tag-f296 {
  text-align: center;
}

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

.grid-pink-6f72 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.progress_center_4575 .input-steel-4528 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.silver_8114 {
  text-align: right;
}

.silver_8114 .disabled-1aed {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.accent-d019 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mini-91e9 {
  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);
}

.mini-91e9:hover {
  background: var(--color-bg-alt);
}

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

.mini-91e9[aria-expanded="true"] .nav_next_80bc {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.shadow_top_0fc1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

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

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

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

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

.north_bcb9 ul,
.picture_fdb3 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.down-865b {
  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);
}

.text-93e4 {
  font-style: italic;
}

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

.menu-hard-01c6 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-light-5953 .dropdown_0527 {
  color: #4caf50;
  font-size: 0.875rem;
}

.focused-91c2 {
  list-style: none;
  padding: 0;
}

.focused-91c2 li {
  margin-bottom: var(--space-xs);
}

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

.focused-91c2 a:hover {
  color: white;
}

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

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

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

.preview_dirty_151a a:hover {
  color: white;
}

.link-under-278e {
  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);
}

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

.column-black-55b8 a {
  color: #4caf50;
  text-decoration: none;
}

.hovered-20e1 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.gallery-top-c43a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .link-under-278e {
    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;
  }
  
  .in-67bd {
    font-size: 2rem;
  }
  
  .photo_pressed_9ba5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .grid_complex_8790,
  .easy-52e7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .panel_84b6,
  .secondary_d25a,
  .dark-89be,
  .item-out-d4ad,
  .input_up_90d2,
  .module-5325,
  .notification_e4e2,
  .overlay-complex-c0b0 {
    grid-template-columns: 1fr;
  }
  
  .hero-bright-2936 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .widget-297d {
    padding: var(--space-lg) 0;
  }
  
  .preview_static_1de0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .preview_static_1de0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .liquid_371e {
    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;
  }
  
  .hero-bright-2936 {
    grid-template-columns: 1fr;
  }
  
  .gradient-99e3,
  .list_cool_77c8,
  .chip_dim_f5fa {
    flex-direction: column;
    width: 100%;
  }
  
  .basic-90fc,
  .title_hard_4bdb,
  .gradient-99e3 .liquid_371e,
  .list_cool_77c8 .liquid_371e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .in-67bd {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .photo_pressed_9ba5 {
    font-size: 1.375rem;
  }
  
  .outer_c0a7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .lower-39d4,
  .north_7d36,
  .lite_b2f2,
  .block-pro-5257,
  .search-8c29 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .item-5ac4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pink_67c3 {
    gap: var(--space-xs);
  }
  
  .status-large-8acc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .focus_8fac {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .progress_center_4575 {
    width: 150px;
    height: 150px;
  }
  
  .grid-pink-6f72 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .west-561b,
  .sort_f4ab,
  .gradient-99e3,
  .menu-hard-01c6,
  .cold-5444,
  .footer_east_5900,
  .row_8a87 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .widget-297d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 0abb */
.widget-item-r0 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.3;
}
