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

.pattern-e8f8:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.picture_7761):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.picture_7761,
header,
.fast-4f2f,
.hard_403e,
.highlight_f0a7,
.light-a466,
.wrapper-pro-0fe8,
.dirty-5d00,
.row-liquid-7a19 {
  max-width: none;
}

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

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

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

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

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

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

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

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

.fast_3501 {
  flex: 1;
}

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

.cold-69fe {
  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);
}

.cold-69fe:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.cold-69fe.fn-active-960d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.small_a1cb {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

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

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

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

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

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

.module-tall-5c0e {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.container_fluid_c6a8 svg {
  flex-shrink: 0;
}

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

.hot-2dfa: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);
}

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

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

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

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

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

.filter-tall-9e3a[aria-expanded="true"] .modal_36fd:nth-child(2) {
  opacity: 0;
}

.filter-tall-9e3a[aria-expanded="true"] .modal_36fd:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .fast_3501::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .fast_3501.box_5635 {
    display: block;
    right: 0;
  }
  
  .outline-878c {
    flex-direction: column;
    gap: 0;
  }
  
  .cold-69fe {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .fast_3501::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;
  }
  
  .fast_3501.box_5635::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .fast_3501 {
    display: none;
  }
  
  .filter-tall-9e3a {
    display: flex;
  }
  
  .orange_bdfa {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .container_fluid_c6a8,
  .hot-2dfa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .slow_755d {
    position: relative;
  }
  
  .small_a1cb {
    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;
  }
  
  .media_gas_fa0c[aria-expanded="true"] + .small_a1cb {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .photo-basic-cf08 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .module-tall-5c0e {
    gap: 8px;
  }
  
  .container_fluid_c6a8 {
    display: none;
  }
  
  .hot-2dfa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .brown_303d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.center-9914 svg {
  flex-shrink: 0;
}

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

.center-9914 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.accent-bright-f5f6 a {
  color: var(--color-primary);
  text-decoration: none;
}

.accent-bright-f5f6 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hero-thick-615a {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-gold-1f03 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .table_last_3da8 {
    grid-template-columns: 1fr;
  }
  
  .basic-eec9 {
    font-size: 1.75rem;
  }
  
  .surface-6240 {
    order: -1;
    max-width: 100%;
  }
  
  .north_b516 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .basic-eec9 {
    font-size: 1.5rem;
  }
  
  .backdrop_dynamic_5a0a {
    font-size: 1rem;
  }
  
  .accent-bright-f5f6 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .north_b516 {
    max-width: 250px;
  }
}

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

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

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

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

.plasma-951a:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-paper-436f {
  list-style: none;
  counter-reset: toc-counter;
}

.popup-paper-436f li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.popup-paper-436f 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);
}

.popup-paper-436f 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;
}

.popup-paper-436f li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.wrapper-pro-0fe8 {
  padding: var(--space-xxl) 0;
}

.liquid-1a8f {
  background: var(--color-bg-section);
}

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

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

.west-245b {
  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);
}

.gallery-top-3da1 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.gallery-5c91 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.gallery-5c91 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);
}

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

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

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

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

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

.gallery-5c91 strong {
  font-weight: 600;
  color: var(--color-text);
}

.gallery-5c91 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.gallery-5c91 a:hover {
  color: var(--color-primary-dark);
}

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

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

.form_fd8a 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) {
  .hover-41e3 {
    grid-template-columns: 1fr;
  }
  
  .west-245b {
    font-size: 1.75rem;
  }
  
  .gallery-5c91 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .west-245b {
    font-size: 1.5rem;
  }
  
  .gallery-5c91 h3 {
    font-size: 1.375rem;
  }
  
  .gallery-5c91 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.wrapper-small-c855 {
  flex-shrink: 0;
}

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

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

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

.texture_ed00,
.highlight-0e8e,
.fluid_3aa8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.texture_ed00 thead,
.highlight-0e8e thead {
  background: var(--color-primary);
  color: white;
}

.texture_ed00 th,
.texture_ed00 td,
.highlight-0e8e th,
.highlight-0e8e td,
.fluid_3aa8 th,
.fluid_3aa8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .texture_ed00 th,
  .texture_ed00 td,
  .highlight-0e8e th,
  .highlight-0e8e td,
  .fluid_3aa8 th,
  .fluid_3aa8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .texture_ed00,
  .highlight-0e8e,
  .fluid_3aa8 {
    min-width: 600px;
  }
}

.texture_ed00 th,
.highlight-0e8e th,
.fluid_3aa8 th {
  font-weight: 600;
}

.texture_ed00 tbody tr:hover,
.highlight-0e8e tbody tr:hover,
.fluid_3aa8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.wrapper-warm-0afd h4 {
  color: white;
}

.texture-warm-3ce5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.filter-d872:last-child {
  border-bottom: none;
}

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

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

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

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

.shade-e354:hover {
  text-decoration: underline;
}

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

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

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

.row-71d7 {
  font-weight: 600;
  color: white;
}

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

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

.simple-d82a {
  color: #4caf50;
}

.carousel_37cf {
  color: #ff9800;
}

.panel-outer-d165 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.backdrop-top-25ee {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.mask-81e4 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.sidebar_middle_cdc2 .complex-ca60 {
  width: 100%;
  background: white;
}

.tooltip-fast-7027 .complex-ca60 {
  color: #667eea;
}

.east-fdfe .complex-ca60 {
  color: #f5576c;
}

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

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

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

.layout-first-37e8 {
  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);
}

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

.easy-3c04 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .wood_4eca {
    padding: var(--space-md);
  }
  
  .easy-3c04 {
    padding: var(--space-md);
  }
  
  .tall-ace5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.grid_black_0ff9,
.heading-warm-85e5,
.secondary_thick_4b6a,
.menu-77d2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.column-93c3 {
  border-color: var(--color-success);
}

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

.banner_dynamic_67e5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.column-93c3 .banner_dynamic_67e5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.menu-8529 .banner_dynamic_67e5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.content-liquid-0f6f {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.next-6634 {
  text-align: center;
}

.picture-middle-1756 {
  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);
}

.mask-advanced-558b {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.picture-middle-1756 .row-71d7 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.search-outer-2b17 p {
  margin-bottom: var(--space-md);
}

.dropdown-medium-2ccf {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.tiny-7c7b {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-wide-3af8 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.mask-e9a2 {
  text-align: right;
}

.mask-e9a2 .blue-8de0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.banner-edef {
  background: #e8f5e9;
  color: #2e7d32;
}

.texture-9211 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.brown-24fc {
  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);
}

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

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

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

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

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

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

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

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

.module-93aa {
  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);
}

.module-93aa:hover {
  background: var(--color-bg-alt);
}

.action-8f73 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.module-93aa[aria-expanded="true"] .action-8f73 {
  transform: rotate(180deg);
}

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

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

.item-slow-5ac7 ul,
.item-slow-5ac7 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.item-slow-5ac7 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .outline-dirty-947f {
    grid-template-columns: 1fr;
  }
}

.input-2510,
.label-1af2 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.input-2510 h4,
.label-1af2 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.input-2510 ul,
.label-1af2 ul {
  list-style: none;
  padding: 0;
}

.input-2510 li,
.label-1af2 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-4205 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.table-narrow-93ce {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

/* Footer variant: footer-content (subpages) */
.tabs-center-c9bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.slider_62ff {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.slider_62ff a:hover {
  color: white;
}

.green-c82c {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.green-c82c a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.green-c82c a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.shadow_666d {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.shadow_666d a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.shadow_666d a:hover {
  color: white;
}

.banner_72b1 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .box-advanced-bcdd,
  .tabs-center-c9bb {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.warm_603f .hero-thick-615a {
  color: #4caf50;
  font-size: 0.875rem;
}

.east-d8c5 {
  list-style: none;
  padding: 0;
}

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

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

.east-d8c5 a:hover {
  color: white;
}

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

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

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

.popup_f3ce a:hover {
  color: white;
}

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

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

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

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

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

.notification-in-be76 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.notification-in-be76 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .banner_72b1 {
    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;
  }
  
  .basic-eec9 {
    font-size: 2rem;
  }
  
  .west-245b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .table_last_3da8,
  .hover-41e3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .silver-04ea,
  .stone_0fbe,
  .layout_54bc,
  .hover-light-a2f9,
  .outline-dirty-947f,
  .hidden-focused-9368,
  .easy-609f,
  .box-advanced-bcdd,
  .tabs-center-c9bb {
    grid-template-columns: 1fr;
  }
  
  .button_da43 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .wrapper-pro-0fe8 {
    padding: var(--space-lg) 0;
  }
  
  .popup-paper-436f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .popup-paper-436f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .complex-ca60 {
    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;
  }
  
  .button_da43 {
    grid-template-columns: 1fr;
  }
  
  .center-f222,
  .input_black_0e14,
  .dropdown_top_1238 {
    flex-direction: column;
    width: 100%;
  }
  
  .iron_1240,
  .out-2676,
  .center-f222 .complex-ca60,
  .input_black_0e14 .complex-ca60 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .basic-eec9 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .west-245b {
    font-size: 1.375rem;
  }
  
  .breadcrumb-short-593f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .static_66da,
  .fluid_c006,
  .simple_f030,
  .west-fac2,
  .avatar-up-d88b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .footer-2b7c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .article-3a5a {
    gap: var(--space-xs);
  }
  
  .center-9914 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .table_inner_6ea9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .picture-middle-1756 {
    width: 150px;
    height: 150px;
  }
  
  .mask-advanced-558b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture_7761,
  .fast-4f2f,
  .center-f222,
  .bright_76ef,
  .dirty-5d00,
  .row-liquid-7a19,
  .filter-tall-9e3a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .wrapper-pro-0fe8 {
    page-break-inside: avoid;
  }
}

/* css-noise: 7b02 */
.shadow-element-w1 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
