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

.in_e8b1:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.first-36be):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. */
.first-36be,
header,
.section-north-3bd5,
.caption-glass-96b1,
.link_cb4f,
.hidden_plasma_6a65,
.prev-acb1,
.red_f480,
.mini_bc02 {
  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
   ============================================ */
.first-36be {
  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);
}

.feature-prev-3c15 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.first-36be.red-f0d3 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.badge-b2d8 {
  flex: 1;
}

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

.image-white-acdc {
  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);
}

.image-white-acdc:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.image-white-acdc.media_short_e349 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.avatar-orange-e58b {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.active-first-3d25 {
  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;
}

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

.active-first-3d25 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.dim-3afb[aria-expanded="true"] .summary-current-a22a:nth-child(2) {
  opacity: 0;
}

.dim-3afb[aria-expanded="true"] .summary-current-a22a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .badge-b2d8::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .badge-b2d8.up-d503 {
    display: block;
    right: 0;
  }
  
  .row_3889 {
    flex-direction: column;
    gap: 0;
  }
  
  .image-white-acdc {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .badge-b2d8::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;
  }
  
  .badge-b2d8.up-d503::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .badge-b2d8 {
    display: none;
  }
  
  .dim-3afb {
    display: flex;
  }
  
  .plasma_82b1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active-first-3d25,
  .gallery-fdae {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .avatar-orange-e58b {
    position: relative;
  }
  
  .thick-7e02 {
    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;
  }
  
  .complex_7789[aria-expanded="true"] + .thick-7e02 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slider_57e5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .popup-small-aab6 {
    gap: 8px;
  }
  
  .active-first-3d25 {
    display: none;
  }
  
  .gallery-fdae {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .badge_gold_c2e7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.dim-0df2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dim-0df2 svg {
  flex-shrink: 0;
}

.dim-0df2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.dim-0df2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.down-361a {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

.search-2e21 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .smooth_7197 {
    grid-template-columns: 1fr;
  }
  
  .highlight-west-a95b {
    font-size: 1.75rem;
  }
  
  .banner-7364 {
    order: -1;
    max-width: 100%;
  }
  
  .search-2e21 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .highlight-west-a95b {
    font-size: 1.5rem;
  }
  
  .modal_lower_e0f2 {
    font-size: 1rem;
  }
  
  .narrow_714b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .search-2e21 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture-bottom-cc97:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

.focused-f560 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;
}

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

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

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

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

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

.notification-010f {
  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);
}

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

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

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

.footer-pink-6aad {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.footer-pink-6aad img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-pink-6aad pre,
.footer-pink-6aad code {
  overflow-x: auto;
  max-width: 100%;
}

.footer-pink-6aad 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);
}

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

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

.footer-pink-6aad p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.footer-pink-6aad ul,
.footer-pink-6aad ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.footer-pink-6aad li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.footer-pink-6aad strong {
  font-weight: 600;
  color: var(--color-text);
}

.footer-pink-6aad a {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-pink-6aad a:hover {
  color: var(--color-primary-dark);
}

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

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

.search_89fd 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) {
  .container-mini-5d32 {
    grid-template-columns: 1fr;
  }
  
  .notification-010f {
    font-size: 1.75rem;
  }
  
  .footer-pink-6aad {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .notification-010f {
    font-size: 1.5rem;
  }
  
  .footer-pink-6aad h3 {
    font-size: 1.375rem;
  }
  
  .footer-pink-6aad h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.down_ea0b {
  flex-shrink: 0;
}

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

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

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

.orange-6c6b,
.new-cdd1,
.modal_84c7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.orange-6c6b thead,
.new-cdd1 thead {
  background: var(--color-primary);
  color: white;
}

.orange-6c6b th,
.orange-6c6b td,
.new-cdd1 th,
.new-cdd1 td,
.modal_84c7 th,
.modal_84c7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .orange-6c6b th,
  .orange-6c6b td,
  .new-cdd1 th,
  .new-cdd1 td,
  .modal_84c7 th,
  .modal_84c7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .orange-6c6b,
  .new-cdd1,
  .modal_84c7 {
    min-width: 600px;
  }
}

.orange-6c6b th,
.new-cdd1 th,
.modal_84c7 th {
  font-weight: 600;
}

.orange-6c6b tbody tr:hover,
.new-cdd1 tbody tr:hover,
.modal_84c7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.message_gas_c5ab h4 {
  color: white;
}

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

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

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

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

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

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

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

.pro-232f:hover {
  text-decoration: underline;
}

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

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

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

.pressed-4365 {
  font-weight: 600;
  color: white;
}

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

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

.disabled-pro-ee7a {
  color: #4caf50;
}

.active_selected_22eb {
  color: #ff9800;
}

.feature-iron-a8a8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

/* ============================================
   15. FEATURE GRID
   ============================================ */
.panel_ea27 {
  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_ea27 {
    grid-template-columns: 1fr;
  }
}

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

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

.box-liquid-bc5a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid_c24e .north-7baf {
  width: 100%;
  background: white;
}

.fast-96d5 .north-7baf {
  color: #667eea;
}

.solid_17e9 .north-7baf {
  color: #f5576c;
}

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

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

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

.primary-8d23 {
  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);
}

.image-huge-989e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .image-huge-989e {
    padding: var(--space-md);
  }
  
  .alert_hot_9516 {
    padding: var(--space-md);
  }
  
  .highlight-in-1906 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.widget_78fa,
.west-c859,
.solid_eda5,
.tertiary_ba67 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.secondary-paper-4fac:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

@media (max-width: 768px) {
  .header-clean-14eb {
    grid-template-columns: 1fr;
  }
}

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

.column-073e {
  border-color: var(--color-success);
}

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

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

.column-073e .dynamic_5b6c {
  background: #e8f5e9;
  color: var(--color-success);
}

.tabs_2603 .dynamic_5b6c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.badge-hovered-4e72 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.top-8b3b {
  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);
}

.picture_ecb2 {
  text-align: center;
}

.link-rough-8592 {
  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);
}

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

.link-rough-8592 .pressed-4365 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.fluid-9da2 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel-764a {
  text-align: right;
}

.steel-764a .detail_cold_fc0f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.left-1888 {
  background: #e3f2fd;
  color: #1565c0;
}

.primary-cold-948a {
  background: #fff3e0;
  color: #e65100;
}

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

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

.pattern-68b3 {
  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);
}

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

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

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

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

.paragraph-fluid-04f1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.caption-454e {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.accordion_ef5a[aria-expanded="true"] .caption-454e {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.panel-4c81 {
  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);
}

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

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

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

.image-complex-bd1f,
.border-gas-b6ab {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.image-complex-bd1f h4,
.border-gas-b6ab h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.image-complex-bd1f ul,
.border-gas-b6ab ul {
  list-style: none;
  padding: 0;
}

.image-complex-bd1f li,
.border-gas-b6ab li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.outline-left-aabe ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.east-0987 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.narrow-918f {
  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);
}

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

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

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

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

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

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

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

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

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

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

.hard-e405 .paragraph_simple_9018 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hero-bright-f6c4 {
  list-style: none;
  padding: 0;
}

.hero-bright-f6c4 li {
  margin-bottom: var(--space-xs);
}

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

.hero-bright-f6c4 a:hover {
  color: white;
}

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

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

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

.section_9d4a a:hover {
  color: white;
}

.north-5dc8 {
  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);
}

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

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

.tiny-944b {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .north-5dc8 {
    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;
  }
  
  .highlight-west-a95b {
    font-size: 2rem;
  }
  
  .notification-010f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .smooth_7197,
  .container-mini-5d32 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .panel_ea27,
  .header-clean-14eb,
  .grid-1ea7,
  .section-3491,
  .cold_7e6d,
  .sidebar-2e63,
  .tall-603b,
  .slider_e33c {
    grid-template-columns: 1fr;
  }
  
  .footer-91ad {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .prev-acb1 {
    padding: var(--space-lg) 0;
  }
  
  .focused-f560 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .focused-f560 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .north-7baf {
    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;
  }
  
  .footer-91ad {
    grid-template-columns: 1fr;
  }
  
  .pro_ddda,
  .hidden-324e,
  .smooth_d260 {
    flex-direction: column;
    width: 100%;
  }
  
  .tertiary_plasma_c73f,
  .modal_soft_f560,
  .pro_ddda .north-7baf,
  .hidden-324e .north-7baf {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .highlight-west-a95b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notification-010f {
    font-size: 1.375rem;
  }
  
  .notice-c654 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .texture-bottom-cc97,
  .label_rough_a6e3,
  .active-592a,
  .medium_63a9,
  .next_5ba3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget_tiny_3369 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .button-dirty-d4a3 {
    gap: var(--space-xs);
  }
  
  .dim-0df2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .in_afe7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .link-rough-8592 {
    width: 150px;
    height: 150px;
  }
  
  .title_6f95 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .first-36be,
  .section-north-3bd5,
  .pro_ddda,
  .overlay-soft-6431,
  .red_f480,
  .mini_bc02,
  .dim-3afb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .prev-acb1 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9a8f */
.widget-item-v4 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}
