/* ============================================
   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)
   ============================================ */
.panel-lite-1f21 {
  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;
}

.panel-lite-1f21:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.title-steel-76c2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .title-steel-76c2 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .title-steel-76c2 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.red_089f):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.red_089f,
header,
.box_small_a991,
.up-31e5,
.article_yellow_9df1,
.gold_cb29,
.label-2271,
.outline-f0ec,
.soft-8646 {
  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
   ============================================ */
.red_089f {
  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);
}

.center_6569 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.red_089f.huge-7b1a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.dim_382f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.element_current_ae08 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.icon-78dc img {
  height: 36px;
  width: auto;
  display: block;
}

.description-d8dd {
  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;
}

.gallery_steel_98c6 {
  flex: 1;
}

.mask-bronze-a278 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.pattern-out-0be0 {
  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);
}

.pattern-out-0be0:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.pattern-out-0be0.card_9a92 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pink-b748 {
  position: relative;
}

.banner-f1f2 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.banner-f1f2 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.pink-b748:hover .banner-f1f2 svg,
.banner-f1f2[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.avatar_wide_bb30 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.pink-b748:hover .avatar_wide_bb30 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.avatar_wide_bb30::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.header_f936 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.header_f936:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.header_f936[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.slider_brown_d380 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.active_79de {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.active_79de:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.active_79de svg {
  flex-shrink: 0;
}

/* Header Download Button */
.heading_435c {
  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;
}

.heading_435c: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);
}

.heading_435c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.tabs_out_39be {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.border-basic-9df0 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.tabs_out_39be[aria-expanded="true"] .border-basic-9df0:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.tabs_out_39be[aria-expanded="true"] .border-basic-9df0:nth-child(2) {
  opacity: 0;
}

.tabs_out_39be[aria-expanded="true"] .border-basic-9df0:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .gallery_steel_98c6 {
    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 */
  }

  .gallery_steel_98c6::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .gallery_steel_98c6.main_inner_a75e {
    display: block;
    right: 0;
  }
  
  .mask-bronze-a278 {
    flex-direction: column;
    gap: 0;
  }
  
  .pattern-out-0be0 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .gallery_steel_98c6::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;
  }
  
  .gallery_steel_98c6.main_inner_a75e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .gallery_steel_98c6 {
    display: none;
  }
  
  .tabs_out_39be {
    display: flex;
  }
  
  .description-d8dd {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active_79de,
  .heading_435c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pink-b748 {
    position: relative;
  }
  
  .avatar_wide_bb30 {
    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;
  }
  
  .banner-f1f2[aria-expanded="true"] + .avatar_wide_bb30 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .header_f936 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .slider_brown_d380 {
    gap: 8px;
  }
  
  .active_79de {
    display: none;
  }
  
  .heading_435c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .icon-78dc img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .heading_435c {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .heading_435c svg {
    width: 14px;
    height: 14px;
  }
  
  .dim_382f {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.box_small_a991 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.element-dynamic-8aaa {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.thick_b2e3 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.thick_b2e3 svg {
  flex-shrink: 0;
}

.thick_b2e3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.thick_b2e3 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .element-dynamic-8aaa {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.up-31e5 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.tertiary_6c62 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .tertiary_6c62 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.blue_1b11 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.blue_1b11 a {
  color: var(--color-primary);
  text-decoration: none;
}

.blue_1b11 a:hover {
  text-decoration: underline;
}

.pressed-3d84 {
  color: var(--color-text-lighter);
}

.badge_static_6971 {
  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) {
  .badge_static_6971 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .badge_static_6971 {
    font-size: 1.5rem;
  }
}

.list-4d85 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.icon-f984 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .icon-f984 {
    grid-template-columns: 1fr;
  }
}

.breadcrumb-4a8b {
  display: flex;
  gap: var(--space-sm);
}

.component_5acd {
  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;
}

.logo-a72d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-a72d strong {
  font-weight: 600;
  color: var(--color-text);
}

.logo-a72d span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.picture-f499 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.sidebar_thick_0678 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer_4bbc {
  position: relative;
  text-align: center;
}

.outer_4bbc img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.accent-a9ed {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.gold_1666 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.photo-50e6 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.pattern_wide_a570 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.table-bronze-41f9 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.orange-df19 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .tertiary_6c62 {
    grid-template-columns: 1fr;
  }
  
  .badge_static_6971 {
    font-size: 1.75rem;
  }
  
  .sidebar_thick_0678 {
    order: -1;
    max-width: 100%;
  }
  
  .outer_4bbc {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .badge_static_6971 {
    font-size: 1.5rem;
  }
  
  .list-4d85 {
    font-size: 1rem;
  }
  
  .blue_1b11 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .outer_4bbc {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.first_9c56 {
  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;
}

.liquid-37b4 {
  background: var(--color-primary);
  color: white;
}

.liquid-37b4:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.layout_full_f4f7 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.layout_full_f4f7:hover {
  background: var(--color-primary);
  color: white;
}

.notification_dirty_c20c {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.notification_dirty_c20c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.section-1a88 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.surface-b8e3 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.article_yellow_9df1 {
  padding: var(--space-xl) 0;
  background: white;
}

.full_4540 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.accordion_new_ed2d {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.accordion_new_ed2d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.disabled_c50d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.outer_ac5b {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.accordion_4620 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.gold_cb29 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.photo_a0b1 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.liquid-202b {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.fixed-6190 {
  list-style: none;
  counter-reset: toc-counter;
}

.fixed-6190 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.fixed-6190 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);
}

.fixed-6190 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;
}

.fixed-6190 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.label-2271 {
  padding: var(--space-xxl) 0;
}

.outline-in-aef9 {
  background: var(--color-bg-section);
}

.medium_3490 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.easy_7dad {
  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);
}

.article_glass_3041 {
  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);
}

.caption-inner-c02c {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.accordion-orange-6388 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .accordion-orange-6388 {
    grid-template-columns: 1fr 300px;
  }
}

.tertiary_e000 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.tertiary_e000 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tertiary_e000 pre,
.tertiary_e000 code {
  overflow-x: auto;
  max-width: 100%;
}

.tertiary_e000 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);
}

.tertiary_e000 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.tertiary_e000 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.tertiary_e000 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.tertiary_e000 ul,
.tertiary_e000 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.tertiary_e000 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.tertiary_e000 strong {
  font-weight: 600;
  color: var(--color-text);
}

.tertiary_e000 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.tertiary_e000 a:hover {
  color: var(--color-primary-dark);
}

.surface-c5f4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.surface-c5f4 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.surface-c5f4 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) {
  .accordion-orange-6388 {
    grid-template-columns: 1fr;
  }
  
  .article_glass_3041 {
    font-size: 1.75rem;
  }
  
  .tertiary_e000 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .article_glass_3041 {
    font-size: 1.5rem;
  }
  
  .tertiary_e000 h3 {
    font-size: 1.375rem;
  }
  
  .tertiary_e000 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.stone_6079 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.summary-a73a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.chip-left-1068 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.image_a292 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tabs-b440 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.notice-paper-7817 {
  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;
}

.content_pressed_2290 {
  flex-shrink: 0;
}

.last_b6fb strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.dim_070e {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .dim_070e {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.caption_3f88,
.rough-20d7,
.middle-882f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.caption_3f88 thead,
.rough-20d7 thead {
  background: var(--color-primary);
  color: white;
}

.caption_3f88 th,
.caption_3f88 td,
.rough-20d7 th,
.rough-20d7 td,
.middle-882f th,
.middle-882f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .caption_3f88 th,
  .caption_3f88 td,
  .rough-20d7 th,
  .rough-20d7 td,
  .middle-882f th,
  .middle-882f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .caption_3f88,
  .rough-20d7,
  .middle-882f {
    min-width: 600px;
  }
}

.caption_3f88 th,
.rough-20d7 th,
.middle-882f th {
  font-weight: 600;
}

.caption_3f88 tbody tr:hover,
.rough-20d7 tbody tr:hover,
.middle-882f tbody tr:hover {
  background: var(--color-bg-alt);
}

.label-3989 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.sort-a446 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.button-cf60 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.button-cf60 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.detail-0308 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.detail-0308 h4 {
  color: white;
}

.pattern-b2b8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.paragraph-blue-6241 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.paragraph-blue-6241:last-child {
  border-bottom: none;
}

.paragraph-blue-6241 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.paragraph-blue-6241 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.breadcrumb-1392 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.cool-ac47 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.cool-ac47:hover {
  text-decoration: underline;
}

.list_60f0 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.picture_cold_5832 {
  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);
}

.picture_cold_5832 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.huge_a618 {
  font-weight: 600;
  color: white;
}

.list-f466 {
  list-style: none;
  padding: 0;
}

.list-f466 li {
  padding: var(--space-xs) 0;
}

.caption_fbb8 {
  color: #4caf50;
}

.breadcrumb_c504 {
  color: #ff9800;
}

.focused-0c5b {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chip-08f5 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.motion-6ed6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.element-simple-25af {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.medium_f951 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.silver_19b6 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.pressed-d535 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .pressed-d535 {
    grid-template-columns: 1fr;
  }
}

.backdrop_brown_73a5 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.backdrop_brown_73a5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.medium_db30 {
  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_brown_73a5 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.backdrop_brown_73a5 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.description_east_e3d7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.huge_a618 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.preview-58c0 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.section-motion-b6f7 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.section-motion-b6f7 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.thumbnail_hard_0869 {
  max-width: 900px;
  margin: 0 auto;
}

.banner_000e {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.gradient_gold_c493 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .gradient_gold_c493 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.logo-old-3c9a {
  margin-top: var(--space-xxl);
}

.logo-old-3c9a h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.description-bd6c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .description-bd6c {
    grid-template-columns: 1fr;
  }
}

.badge-brown-1a70 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.basic-af9a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.content_ca85 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.badge-brown-1a70 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.badge-brown-1a70 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.badge-brown-1a70 li {
  padding: var(--space-xs) 0;
  color: white;
}

.badge-brown-1a70 .first_9c56 {
  width: 100%;
  background: white;
}

.basic-af9a .first_9c56 {
  color: #667eea;
}

.content_ca85 .first_9c56 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.icon-395b {
  max-width: 900px;
  margin: 0 auto;
}

.pattern-outer-7ec2 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.title_stone_cc1b {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.banner-motion-fbf9 {
  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);
}

.title_stone_cc1b h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.column-ccb0 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .title_stone_cc1b {
    padding: var(--space-md);
  }
  
  .column-ccb0 {
    padding: var(--space-md);
  }
  
  .dropdown-27ca {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.overlay-1dcc ol,
.overlay-1dcc ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.overlay-1dcc li {
  margin-bottom: var(--space-sm);
}

.overlay-1dcc code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.paragraph-c960 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.status-6173 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.dropdown-27ca {
  margin-top: var(--space-lg);
  text-align: center;
}

.dropdown-27ca img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.frame-white-cd2e,
.last_d3e6,
.border-d1a0,
.media-smooth-717b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.frame-pressed-6d19 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.container_short_f733 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.active-huge-7501 {
  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) {
  .active-huge-7501 {
    font-size: 0.625rem;
  }
}

.accordion_hovered_1181 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.accordion_hovered_1181:hover {
  background: var(--color-primary-dark);
}

.hidden_202f {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.hidden_202f h4 {
  margin-bottom: var(--space-md);
}

.tertiary-4a25 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.highlight_146c {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.new-2271 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .new-2271 {
    grid-template-columns: 1fr;
  }
}

.tiny-7788 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.hard-aac5 {
  border-color: var(--color-success);
}

.summary-c4f8 {
  border-color: var(--color-warning);
}

.top-0133 {
  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);
}

.hard-aac5 .top-0133 {
  background: #e8f5e9;
  color: var(--color-success);
}

.summary-c4f8 .top-0133 {
  background: #fff3e0;
  color: var(--color-warning);
}

.tiny-7788 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.tiny-7788 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.solid-8f53 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.feature_hot_a96b {
  margin: var(--space-xxl) 0;
}

.feature_hot_a96b h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.feature_hot_a96b > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.out_2f35 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .out_2f35 {
    grid-template-columns: 1fr;
  }
}

.main-yellow-319c {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.main-yellow-319c h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.glass-d3dd {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.glass-d3dd input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.card-bronze-ab38 {
  margin-top: var(--space-xxl);
}

.component_c63d {
  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);
}

.secondary-center-411b {
  text-align: center;
}

.gradient_east_910e {
  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);
}

.label-f7ff {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.gradient_east_910e .huge_a618 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.yellow-fd92 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.tooltip_36db p {
  margin-bottom: var(--space-md);
}

.box_hot_e43c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .component_c63d {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.avatar_3f3f {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.pro_a168 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.pagination-a0e9 {
  margin-bottom: var(--space-xl);
}

.wide_0711 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.description_68f0 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.wrapper-wide-81b8 {
  color: var(--color-text-light);
}

.heading_8b62 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.heading_554e {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.title_large_6043 {
  font-weight: 600;
  color: var(--color-text);
}

.container_inner_7c6f {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.tall_895b {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.preview-stone-9416 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.footer-focused-59d5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.pressed-4b74 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.layout_right_474d {
  border: 2px solid #4caf50;
}

.backdrop_hot_b665 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.table_short_d773 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.warm_761a {
  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;
}

.soft_a7fd {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.lower_1b4a {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.form-large-2644 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.smooth_206e {
  text-align: right;
}

.smooth_206e .plasma-41a8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.media-f009 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.media-43d6 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.media-43d6 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.slow-8059 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.link_e0eb {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.content-4a6e {
  background: #e8f5e9;
  color: #2e7d32;
}

.panel-tiny-7625 {
  background: #e3f2fd;
  color: #1565c0;
}

.gas-123d {
  background: #fff3e0;
  color: #e65100;
}

.accordion-55c3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.accordion-55c3 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.card-3132 {
  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);
}

.card-3132:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.info-7281 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.focus-b03b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.focus-b03b strong {
  color: var(--color-primary);
}

.gold_5228 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.popup_e7ae {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.soft-3791 {
  max-width: 900px;
  margin: 0 auto;
}

.feature_west_ac5d {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.large_80dc {
  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);
}

.large_80dc:hover {
  background: var(--color-bg-alt);
}

.tertiary_b903 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.large_80dc[aria-expanded="true"] .tertiary_b903 {
  transform: rotate(180deg);
}

.preview_49b1 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.preview_49b1 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.preview_49b1 ul,
.preview_49b1 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.preview_49b1 li {
  margin-bottom: var(--space-xs);
}

.fresh-5d36 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.mask_1b24 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.fresh-5d36 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.texture-e667 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.large_8d6a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.component-top-f052 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.under_d882 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.accordion-cool-0401 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .accordion-cool-0401 {
    grid-template-columns: 1fr;
  }
}

.pink-751d,
.stone-a23e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pink-751d {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.stone-a23e {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.pink-751d h4,
.stone-a23e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pink-751d ul,
.stone-a23e ul {
  list-style: none;
  padding: 0;
}

.pink-751d li,
.stone-a23e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.pattern-5311 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .pattern-5311 {
    grid-template-columns: 1fr;
  }
}

.wide-e19d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.breadcrumb-under-5ac9 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.row_dark_4173 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.wide-e19d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.wide-e19d ul {
  list-style: none;
  padding: 0;
}

.wide-e19d li {
  padding: var(--space-xs) 0;
  color: white;
}

.left-4029 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.left-4029 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.left-4029 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.hovered_b936 {
  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);
}

.left_0bb2 {
  font-style: italic;
}

.label-59a4 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.thumbnail_yellow_eccc {
  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;
}

.thumbnail_yellow_eccc h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.thumbnail_yellow_eccc p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.button-c63f {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.outline-f0ec {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.filter-advanced-5aef {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.copper-b76e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .copper-b76e {
    grid-template-columns: 1fr;
  }
}

.gallery-dark-ec7d {
  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);
}

.gallery-dark-ec7d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.focus_53d7 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.gallery-dark-ec7d h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.gallery-dark-ec7d p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.soft-8646 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.smooth-9026 {
  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) */
.grid-purple-d5a9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.tooltip_ad63 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.tooltip_ad63 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer_5485 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_5485 li {
  margin-bottom: var(--space-xs);
}

.footer_5485 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer_5485 a:hover {
  color: white;
}

.under_5da2 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.under_5da2 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);
}

.under_5da2 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.cool-9573 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cool-9573 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.cool-9573 a:hover {
  color: white;
}

.carousel-action-efb6 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .smooth-9026,
  .grid-purple-d5a9 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.complex_0d48 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.pagination-b158 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.silver_d1aa {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.silver_d1aa .breadcrumb-4a8b {
  color: #4caf50;
  font-size: 0.875rem;
}

.popup-full-ae1e {
  list-style: none;
  padding: 0;
}

.popup-full-ae1e li {
  margin-bottom: var(--space-xs);
}

.popup-full-ae1e a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.popup-full-ae1e a:hover {
  color: white;
}

.picture-4329 {
  list-style: none;
  padding: 0;
}

.picture-4329 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.picture-4329 a {
  color: #b0b0b0;
  text-decoration: none;
}

.picture-4329 a:hover {
  color: white;
}

.carousel-action-efb6 {
  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);
}

.outer_4455 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.outer_4455 a {
  color: #4caf50;
  text-decoration: none;
}

.up_8fe4 {
  font-size: 0.75rem;
  color: #666666;
}

.filter-2812 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.filter-2812 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.filter-2812 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;
}

.last_59b0 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.last_59b0:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .carousel-action-efb6 {
    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;
  }
  
  .badge_static_6971 {
    font-size: 2rem;
  }
  
  .article_glass_3041 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tertiary_6c62,
  .accordion-orange-6388 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pressed-d535,
  .new-2271,
  .description-bd6c,
  .out_2f35,
  .accordion-cool-0401,
  .pattern-5311,
  .copper-b76e,
  .smooth-9026,
  .grid-purple-d5a9 {
    grid-template-columns: 1fr;
  }
  
  .full_4540 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .label-2271 {
    padding: var(--space-lg) 0;
  }
  
  .fixed-6190 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .fixed-6190 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .first_9c56 {
    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;
  }
  
  .full_4540 {
    grid-template-columns: 1fr;
  }
  
  .picture-f499,
  .button-c63f,
  .tertiary-4a25 {
    flex-direction: column;
    width: 100%;
  }
  
  .section-1a88,
  .surface-b8e3,
  .picture-f499 .first_9c56,
  .button-c63f .first_9c56 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .badge_static_6971 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .article_glass_3041 {
    font-size: 1.375rem;
  }
  
  .disabled_c50d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .accordion_new_ed2d,
  .backdrop_brown_73a5,
  .button-cf60,
  .pressed-4b74,
  .pattern-outer-7ec2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .active-huge-7501 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .element-dynamic-8aaa {
    gap: var(--space-xs);
  }
  
  .thick_b2e3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .picture_cold_5832 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .gradient_east_910e {
    width: 150px;
    height: 150px;
  }
  
  .label-f7ff {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .red_089f,
  .box_small_a991,
  .picture-f499,
  .thumbnail_yellow_eccc,
  .outline-f0ec,
  .soft-8646,
  .tabs_out_39be {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .label-2271 {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.prev_41e3 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 9c39 */
.shadow-element-d5 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}
