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

.top-bb46:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.summary_7ded):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. */
.summary_7ded,
header,
.active-ec1c,
.video_5d00,
.secondary_de39,
.widget-action-860a,
.badge-selected-4735,
.pagination-f7cc,
.light_1916 {
  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
   ============================================ */
.summary_7ded {
  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);
}

.red-1a65 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.section-south-8ec7 {
  flex: 1;
}

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

.breadcrumb-north-69f3 {
  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);
}

.breadcrumb-north-69f3:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.breadcrumb-north-69f3.summary_2765 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.list-wide-26ec {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.layout-out-9480 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .section-south-8ec7::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .section-south-8ec7.shade_1ec3 {
    display: block;
    right: 0;
  }
  
  .content-thick-2892 {
    flex-direction: column;
    gap: 0;
  }
  
  .breadcrumb-north-69f3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .section-south-8ec7::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;
  }
  
  .section-south-8ec7.shade_1ec3::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .section-south-8ec7 {
    display: none;
  }
  
  .detail_65d0 {
    display: flex;
  }
  
  .card-1084 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .layout-out-9480,
  .warm_b255 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .list-wide-26ec {
    position: relative;
  }
  
  .component_new_af7d {
    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;
  }
  
  .hover_over_5011[aria-expanded="true"] + .component_new_af7d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .popup-iron-1491 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .element-outer-cddb {
    gap: 8px;
  }
  
  .layout-out-9480 {
    display: none;
  }
  
  .warm_b255 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .disabled_b455 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.secondary_06af svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.hot-5b7d {
  color: var(--color-text-lighter);
}

.text-soft-3afc {
  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) {
  .text-soft-3afc {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .text-soft-3afc {
    font-size: 1.5rem;
  }
}

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

.tertiary-south-1b3e {
  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-south-1b3e {
    grid-template-columns: 1fr;
  }
}

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

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

.complex-6a4d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.complex-6a4d strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.shadow-6c7a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .lower_ce60 {
    grid-template-columns: 1fr;
  }
  
  .text-soft-3afc {
    font-size: 1.75rem;
  }
  
  .fast_7232 {
    order: -1;
    max-width: 100%;
  }
  
  .shadow-6c7a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .text-soft-3afc {
    font-size: 1.5rem;
  }
  
  .panel-43ce {
    font-size: 1rem;
  }
  
  .tall_7806 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .shadow-6c7a {
    max-width: 250px;
  }
}

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

.tag-7c69 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.hover-steel-a5ca {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

.sidebar-paper-7f5e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east-da49 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) {
  .tag_a6ab {
    grid-template-columns: 1fr;
  }
  
  .cool_962f {
    font-size: 1.75rem;
  }
  
  .button-e748 {
    max-width: 100%;
  }
}

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

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

.column-black-a83f {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.backdrop-90cd {
  flex-shrink: 0;
}

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

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

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

.layout-stone-c055,
.highlight-d818,
.east-a2e9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.layout-stone-c055 thead,
.highlight-d818 thead {
  background: var(--color-primary);
  color: white;
}

.layout-stone-c055 th,
.layout-stone-c055 td,
.highlight-d818 th,
.highlight-d818 td,
.east-a2e9 th,
.east-a2e9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .layout-stone-c055 th,
  .layout-stone-c055 td,
  .highlight-d818 th,
  .highlight-d818 td,
  .east-a2e9 th,
  .east-a2e9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .layout-stone-c055,
  .highlight-d818,
  .east-a2e9 {
    min-width: 600px;
  }
}

.layout-stone-c055 th,
.highlight-d818 th,
.east-a2e9 th {
  font-weight: 600;
}

.layout-stone-c055 tbody tr:hover,
.highlight-d818 tbody tr:hover,
.east-a2e9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.icon_0ceb h4 {
  color: white;
}

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

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

.preview-wide-bdcd:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.fixed_d3bc {
  font-weight: 600;
  color: white;
}

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

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

.list-complex-f95a {
  color: #4caf50;
}

.wide_2fb3 {
  color: #ff9800;
}

.search-pink-ac14 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.filter-04b4 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button_da91 .photo_south_0bc3 {
  width: 100%;
  background: white;
}

.header-817e .photo_south_0bc3 {
  color: #667eea;
}

.highlight-b78f .photo_south_0bc3 {
  color: #f5576c;
}

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

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

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

.container_thick_ddeb {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

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

@media (max-width: 768px) {
  .paragraph_b163 {
    padding: var(--space-md);
  }
  
  .dim-7263 {
    padding: var(--space-md);
  }
  
  .photo-ebd3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.column_8b6e,
.paragraph_85c7,
.primary-77a0,
.link_purple_1f81 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.box-d456:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.badge-pro-a478 {
  border-color: var(--color-success);
}

.button-tall-536a {
  border-color: var(--color-warning);
}

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

.badge-pro-a478 .dropdown-c820 {
  background: #e8f5e9;
  color: var(--color-success);
}

.button-tall-536a .dropdown-c820 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.input-static-14c7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.image-wood-511f {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .texture-paper-3cbc {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.layout-narrow-3c1d {
  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);
}

.nav-fdc0 {
  text-align: center;
}

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

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

.accordion_c519 .fixed_d3bc {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .layout-narrow-3c1d {
    grid-template-columns: 1fr;
  }
}

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

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

.paragraph-clean-4b46 {
  margin-bottom: var(--space-xl);
}

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

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

.basic-0c80 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.hot-587e {
  border: 2px solid #4caf50;
}

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

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

.paragraph-next-647e {
  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;
}

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

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

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

.text-mini-5abf {
  text-align: right;
}

.text-mini-5abf .modal-a9bf {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.north-753a {
  background: #e8f5e9;
  color: #2e7d32;
}

.over-ff6d {
  background: #e3f2fd;
  color: #1565c0;
}

.banner-bronze-dc57 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-bronze-522b,
.cool-e668 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.row-bronze-522b h4,
.cool-e668 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.row-bronze-522b ul,
.cool-e668 ul {
  list-style: none;
  padding: 0;
}

.row-bronze-522b li,
.cool-e668 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.block-4b31 {
  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);
}

.sort_5f3d {
  font-style: italic;
}

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

.tag-hard-480d {
  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;
}

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

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

.info-active-161b {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass-f56c .disabled_blue_a876 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.lower_82e4 a:hover {
  color: white;
}

.row-hard-a619 {
  list-style: none;
  padding: 0;
}

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

.row-hard-a619 a {
  color: #b0b0b0;
  text-decoration: none;
}

.row-hard-a619 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .outline_south_e257 {
    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;
  }
  
  .text-soft-3afc {
    font-size: 2rem;
  }
  
  .cool_962f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .lower_ce60,
  .tag_a6ab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .chip-6bb2,
  .row_8235,
  .slider_7520,
  .texture-paper-3cbc,
  .short_e1d0,
  .section_bottom_8084,
  .modal-gas-364b,
  .tooltip_thick_dad4 {
    grid-template-columns: 1fr;
  }
  
  .aside-simple-df60 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .badge-selected-4735 {
    padding: var(--space-lg) 0;
  }
  
  .aside_fast_3099 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .aside_fast_3099 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .photo_south_0bc3 {
    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;
  }
  
  .aside-simple-df60 {
    grid-template-columns: 1fr;
  }
  
  .lower_2d71,
  .info-active-161b,
  .dynamic_5e34 {
    flex-direction: column;
    width: 100%;
  }
  
  .hover-steel-a5ca,
  .active_iron_e3fb,
  .lower_2d71 .photo_south_0bc3,
  .info-active-161b .photo_south_0bc3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .text-soft-3afc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .cool_962f {
    font-size: 1.375rem;
  }
  
  .pressed_e763 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .wide-abd9,
  .backdrop_bright_f135,
  .highlight_down_1bd7,
  .center-1cae,
  .menu_4a53 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .search_gold_ee56 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wrapper_pink_5d83 {
    gap: var(--space-xs);
  }
  
  .secondary_06af {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .panel_yellow_c6a0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .accordion_c519 {
    width: 150px;
    height: 150px;
  }
  
  .layout-3978 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .summary_7ded,
  .active-ec1c,
  .lower_2d71,
  .tag-hard-480d,
  .pagination-f7cc,
  .light_1916,
  .detail_65d0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .badge-selected-4735 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 204b */
.phantom-card-a6 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
