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

.mask_up_9680:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.module_north_a0ed):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. */
.module_north_a0ed,
header,
.box_64cf,
.accordion_60d6,
.top_8633,
.overlay-146b,
.backdrop-481a,
.title-ed98,
.main_dirty_c477 {
  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
   ============================================ */
.module_north_a0ed {
  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);
}

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

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

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

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

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

.thumbnail-2f60 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.thick_a9a6 {
  flex: 1;
}

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

.modal-1f7a {
  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);
}

.modal-1f7a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.modal-1f7a.picture-bottom-b57e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.shade-527b {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.dynamic-c2be svg {
  flex-shrink: 0;
}

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

.widget-81e3: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);
}

.widget-81e3 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.progress-bottom-d737[aria-expanded="true"] .pagination_black_b3cf:nth-child(2) {
  opacity: 0;
}

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

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

  .thick_a9a6::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .thick_a9a6.widget-center-c694 {
    display: block;
    right: 0;
  }
  
  .description-iron-5d8e {
    flex-direction: column;
    gap: 0;
  }
  
  .modal-1f7a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .thick_a9a6::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;
  }
  
  .thick_a9a6.widget-center-c694::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .thick_a9a6 {
    display: none;
  }
  
  .progress-bottom-d737 {
    display: flex;
  }
  
  .layout_down_3713 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dynamic-c2be,
  .widget-81e3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .shade-527b {
    position: relative;
  }
  
  .badge_2b6f {
    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_upper_dfdb[aria-expanded="true"] + .badge_2b6f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .table-full-b1dc {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .under-b7b0 {
    gap: 8px;
  }
  
  .dynamic-c2be {
    display: none;
  }
  
  .widget-81e3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .thumbnail-2f60 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.content_easy_2ed7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary_purple_f495 {
  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_purple_f495 {
    grid-template-columns: 1fr;
  }
}

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

.list-large-9c58 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .badge-4bc8 {
    grid-template-columns: 1fr;
  }
  
  .shadow-aac7 {
    font-size: 1.75rem;
  }
  
  .breadcrumb_old_7088 {
    order: -1;
    max-width: 100%;
  }
  
  .notification_steel_e28e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shadow-aac7 {
    font-size: 1.5rem;
  }
  
  .footer-5b10 {
    font-size: 1rem;
  }
  
  .plasma_6020 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notification_steel_e28e {
    max-width: 250px;
  }
}

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

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

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

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

.layout-82c5:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.selected-24fb {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.cold-5c19:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.stone-1d97 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.stone-1d97 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);
}

.stone-1d97 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;
}

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

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

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

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

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

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

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

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

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

.row-dirty-63ef {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.row-dirty-63ef img {
  max-width: 100%;
  height: auto;
  display: block;
}

.row-dirty-63ef pre,
.row-dirty-63ef code {
  overflow-x: auto;
  max-width: 100%;
}

.row-dirty-63ef 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);
}

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

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

.row-dirty-63ef p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.row-dirty-63ef ul,
.row-dirty-63ef ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.row-dirty-63ef li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.row-dirty-63ef strong {
  font-weight: 600;
  color: var(--color-text);
}

.row-dirty-63ef a {
  color: var(--color-primary);
  text-decoration: underline;
}

.row-dirty-63ef a:hover {
  color: var(--color-primary-dark);
}

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

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

.slider_2684 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) {
  .search_gold_72b8 {
    grid-template-columns: 1fr;
  }
  
  .tall_ebf4 {
    font-size: 1.75rem;
  }
  
  .row-dirty-63ef {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tall_ebf4 {
    font-size: 1.5rem;
  }
  
  .row-dirty-63ef h3 {
    font-size: 1.375rem;
  }
  
  .row-dirty-63ef h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.fixed-41cb {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.paper_d654 {
  flex-shrink: 0;
}

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

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

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

.header_ddf2,
.carousel_7cb8,
.wrapper_41f4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.header_ddf2 thead,
.carousel_7cb8 thead {
  background: var(--color-primary);
  color: white;
}

.header_ddf2 th,
.header_ddf2 td,
.carousel_7cb8 th,
.carousel_7cb8 td,
.wrapper_41f4 th,
.wrapper_41f4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header_ddf2 th,
  .header_ddf2 td,
  .carousel_7cb8 th,
  .carousel_7cb8 td,
  .wrapper_41f4 th,
  .wrapper_41f4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .header_ddf2,
  .carousel_7cb8,
  .wrapper_41f4 {
    min-width: 600px;
  }
}

.header_ddf2 th,
.carousel_7cb8 th,
.wrapper_41f4 th {
  font-weight: 600;
}

.header_ddf2 tbody tr:hover,
.carousel_7cb8 tbody tr:hover,
.wrapper_41f4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.secondary-first-07ca {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.current-d5be h4 {
  color: white;
}

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

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

.form-dark-1c66:last-child {
  border-bottom: none;
}

.form-dark-1c66 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.form-dark-1c66 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.wrapper-narrow-28ca:hover {
  text-decoration: underline;
}

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

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

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

.texture-liquid-ea03 {
  font-weight: 600;
  color: white;
}

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

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

.image-paper-69fd {
  color: #4caf50;
}

.inner-e9aa {
  color: #ff9800;
}

.west-61b7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.silver-66f7 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title_brown_141c .fresh-ba8a {
  width: 100%;
  background: white;
}

.avatar_35d7 .fresh-ba8a {
  color: #667eea;
}

.gas_819b .fresh-ba8a {
  color: #f5576c;
}

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

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

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

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

.liquid-12d7 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .liquid-12d7 {
    padding: var(--space-md);
  }
  
  .chip_glass_3c3c {
    padding: var(--space-md);
  }
  
  .small-2989 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.caption-new-22d1,
.top-7884,
.thumbnail_basic_33c2,
.secondary_f313 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.title-basic-ea24:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.simple-5ee8 {
  border-color: var(--color-warning);
}

.lite-557b {
  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);
}

.title-ddaa .lite-557b {
  background: #e8f5e9;
  color: var(--color-success);
}

.simple-5ee8 .lite-557b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.warm-8cbd {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.nav-slow-dd16 {
  margin-top: var(--space-xxl);
}

.chip-upper-b351 {
  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);
}

.texture-bottom-fde6 {
  text-align: center;
}

.brown-35b5 {
  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);
}

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

.brown-35b5 .texture-liquid-ea03 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.highlight-white-3dec {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.light-2f53 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.focus-clean-ce3c {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.sort_5c96 {
  text-align: right;
}

.sort_5c96 .dark_5b54 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.badge-simple-33a0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.short-da40 {
  background: #e3f2fd;
  color: #1565c0;
}

.row-slow-4210 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-gas-291f {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.right_419e[aria-expanded="true"] .input-gas-291f {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar_brown_a28c ul,
.dropdown_6642 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-light-748b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.box-inner-dce5 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.image_advanced_0173 .surface_blue_6f46 {
  color: #4caf50;
  font-size: 0.875rem;
}

.bottom-2f16 {
  list-style: none;
  padding: 0;
}

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

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

.bottom-2f16 a:hover {
  color: white;
}

.section-b074 {
  list-style: none;
  padding: 0;
}

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

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

.section-b074 a:hover {
  color: white;
}

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

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

.highlight-1ae5 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.modal-plasma-46c1 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.modal-plasma-46c1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .mask_5809 {
    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;
  }
  
  .shadow-aac7 {
    font-size: 2rem;
  }
  
  .tall_ebf4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .badge-4bc8,
  .search_gold_72b8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .logo_inner_574d,
  .disabled-b764,
  .feature_liquid_f3fd,
  .link-2d66,
  .lite-75d3,
  .logo-solid-c3e6,
  .right_bb1e,
  .hover_5015 {
    grid-template-columns: 1fr;
  }
  
  .tooltip_glass_3e19 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .backdrop-481a {
    padding: var(--space-lg) 0;
  }
  
  .stone-1d97 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .stone-1d97 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .fresh-ba8a {
    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;
  }
  
  .tooltip_glass_3e19 {
    grid-template-columns: 1fr;
  }
  
  .text_2f18,
  .highlight_cool_0df0,
  .sort_clean_89ff {
    flex-direction: column;
    width: 100%;
  }
  
  .fluid_7a0a,
  .selected-24fb,
  .text_2f18 .fresh-ba8a,
  .highlight_cool_0df0 .fresh-ba8a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shadow-aac7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tall_ebf4 {
    font-size: 1.375rem;
  }
  
  .disabled_orange_3509 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .cold-5c19,
  .prev-df36,
  .section_71a8,
  .background-043f,
  .card_tiny_caa4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .text_white_1b2c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focus-over-ccdc {
    gap: var(--space-xs);
  }
  
  .content_easy_2ed7 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .overlay_8e95 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .brown-35b5 {
    width: 150px;
    height: 150px;
  }
  
  .pagination_old_6e7f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .module_north_a0ed,
  .box_64cf,
  .text_2f18,
  .carousel_cdf4,
  .title-ed98,
  .main_dirty_c477,
  .progress-bottom-d737 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .backdrop-481a {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 723c */
.promo-block-u4 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.3;
}
