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

.primary-top-351c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.secondary-stale-3e4a,
header,
.backdrop_b734,
.video_de18,
.feature_pro_127c,
.under-1060,
.container_stone_78d3,
.new_ffd1,
.popup-large-b99f {
  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
   ============================================ */
.secondary-stale-3e4a {
  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);
}

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

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

/* Scrolled state */
.secondary-stale-3e4a.shadow_f240 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.media-24a3 {
  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;
}

.menu-paper-7d51 {
  flex: 1;
}

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

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

.gradient-c999:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.gradient-c999.fn-active-624b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.list-7879 {
  position: relative;
}

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

.gallery-1b0a svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.column-medium-087e {
  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;
}

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

.column-medium-087e svg {
  flex-shrink: 0;
}

/* Header Download Button */
.dropdown-current-486f {
  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;
}

.dropdown-current-486f: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);
}

.dropdown-current-486f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .menu-paper-7d51::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .menu-paper-7d51.accordion-6fea {
    display: block;
    right: 0;
  }
  
  .panel-short-2506 {
    flex-direction: column;
    gap: 0;
  }
  
  .gradient-c999 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .menu-paper-7d51::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;
  }
  
  .menu-paper-7d51.accordion-6fea::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .menu-paper-7d51 {
    display: none;
  }
  
  .breadcrumb-a693 {
    display: flex;
  }
  
  .media-24a3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .column-medium-087e,
  .dropdown-current-486f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .list-7879 {
    position: relative;
  }
  
  .sidebar-west-ccf0 {
    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;
  }
  
  .gallery-1b0a[aria-expanded="true"] + .sidebar-west-ccf0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .preview-under-6941 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .logo_clean_1acf {
    gap: 8px;
  }
  
  .column-medium-087e {
    display: none;
  }
  
  .dropdown-current-486f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .gallery_3927 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .dropdown-current-486f {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .dropdown-current-486f svg {
    width: 14px;
    height: 14px;
  }
  
  .gallery-lite-8412 {
    gap: var(--space-sm);
  }
}

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

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

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

.warm_7b64 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.search-19da a {
  color: var(--color-primary);
  text-decoration: none;
}

.search-19da a:hover {
  text-decoration: underline;
}

.form-huge-3e9e {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.grid-bright-5dee {
  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;
}

.mask-pink-3dcf {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mask-pink-3dcf strong {
  font-weight: 600;
  color: var(--color-text);
}

.mask-pink-3dcf span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.column-middle-2efe {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .full-37c1 {
    grid-template-columns: 1fr;
  }
  
  .accordion_east_4f0a {
    font-size: 1.75rem;
  }
  
  .pattern-ed88 {
    order: -1;
    max-width: 100%;
  }
  
  .header_a82d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .accordion_east_4f0a {
    font-size: 1.5rem;
  }
  
  .video_f747 {
    font-size: 1rem;
  }
  
  .search-19da {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .header_a82d {
    max-width: 250px;
  }
}

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

.mask-942d {
  background: var(--color-primary);
  color: white;
}

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

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

.aside-9c92:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.motion-50b7 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.main-full-600d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.grid-focused-8ca0 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.logo-82f1 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.logo-82f1 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);
}

.logo-82f1 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;
}

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

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

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

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

.module-new-c2c2 {
  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);
}

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

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

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

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

.element-stone-9633 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.element-stone-9633 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.element-stone-9633 pre,
.element-stone-9633 code {
  overflow-x: auto;
  max-width: 100%;
}

.element-stone-9633 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);
}

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

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

.element-stone-9633 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.element-stone-9633 ul,
.element-stone-9633 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.element-stone-9633 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.element-stone-9633 strong {
  font-weight: 600;
  color: var(--color-text);
}

.element-stone-9633 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.element-stone-9633 a:hover {
  color: var(--color-primary-dark);
}

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

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

.backdrop_stone_9fbd 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) {
  .widget-lower-7a8a {
    grid-template-columns: 1fr;
  }
  
  .active_lower_d757 {
    font-size: 1.75rem;
  }
  
  .element-stone-9633 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .active_lower_d757 {
    font-size: 1.5rem;
  }
  
  .element-stone-9633 h3 {
    font-size: 1.375rem;
  }
  
  .element-stone-9633 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.header-dd92 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.aside-short-286e strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.filter-a51f {
  flex-shrink: 0;
}

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

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

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

.current_88ef,
.avatar-eea0,
.texture_c574 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.current_88ef thead,
.avatar-eea0 thead {
  background: var(--color-primary);
  color: white;
}

.current_88ef th,
.current_88ef td,
.avatar-eea0 th,
.avatar-eea0 td,
.texture_c574 th,
.texture_c574 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .current_88ef th,
  .current_88ef td,
  .avatar-eea0 th,
  .avatar-eea0 td,
  .texture_c574 th,
  .texture_c574 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .current_88ef,
  .avatar-eea0,
  .texture_c574 {
    min-width: 600px;
  }
}

.current_88ef th,
.avatar-eea0 th,
.texture_c574 th {
  font-weight: 600;
}

.current_88ef tbody tr:hover,
.avatar-eea0 tbody tr:hover,
.texture_c574 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.shade_e8b4 h4 {
  color: white;
}

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

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

.fast-f914:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.simple-0da3 {
  list-style: none;
  padding: 0;
}

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

.hovered-26e3 {
  color: #4caf50;
}

.center-4e49 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-left-8f35 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.in-b424 .outer-8826 {
  width: 100%;
  background: white;
}

.west_efc3 .outer-8826 {
  color: #667eea;
}

.focused_994c .outer-8826 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.overlay-narrow-1c62 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.dim-2e37 {
  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);
}

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

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

@media (max-width: 768px) {
  .first_4d87 {
    padding: var(--space-md);
  }
  
  .section_bright_a6e5 {
    padding: var(--space-md);
  }
  
  .label_03e7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.frame-orange-6c35,
.blue_af39,
.active_9124,
.frame_26b9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.component-large-c39b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.narrow-7c8a {
  border-color: var(--color-success);
}

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

.hero-pro-ca32 {
  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);
}

.narrow-7c8a .hero-pro-ca32 {
  background: #e8f5e9;
  color: var(--color-success);
}

.status_7c92 .hero-pro-ca32 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.feature-d2f8 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.container-54a2 {
  margin-top: var(--space-xxl);
}

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

.footer_slow_c07d {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.orange-2e14 {
  color: var(--color-text-light);
}

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

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

.photo-a182 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_8a74 {
  text-align: right;
}

.carousel_8a74 .logo-184a {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.orange-dfe0 {
  background: #e8f5e9;
  color: #2e7d32;
}

.new_6279 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.action-6b71 {
  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);
}

.action-6b71:hover {
  background: var(--color-bg-alt);
}

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

.action-6b71[aria-expanded="true"] .item_black_e3e1 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.silver-0411,
.video_6181 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.silver-0411 h4,
.video_6181 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.silver-0411 ul,
.video_6181 ul {
  list-style: none;
  padding: 0;
}

.silver-0411 li,
.video_6181 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-lite-f82e {
  font-style: italic;
}

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

.glass-65da {
  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;
}

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

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

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

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

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

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

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

.pro-59b0 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.title_e98b .message_first_8a4c {
  color: #4caf50;
  font-size: 0.875rem;
}

.simple-9184 {
  list-style: none;
  padding: 0;
}

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

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

.simple-9184 a:hover {
  color: white;
}

.pressed-0e59 {
  list-style: none;
  padding: 0;
}

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

.pressed-0e59 a {
  color: #b0b0b0;
  text-decoration: none;
}

.pressed-0e59 a:hover {
  color: white;
}

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

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

.column-dim-08e7 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .orange_386b {
    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;
  }
  
  .accordion_east_4f0a {
    font-size: 2rem;
  }
  
  .active_lower_d757 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .full-37c1,
  .widget-lower-7a8a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .progress-a4cf,
  .fluid-528d,
  .layout_cool_e264,
  .dark_4b24,
  .west_d651,
  .primary_ce93,
  .column-0094,
  .green-05e5 {
    grid-template-columns: 1fr;
  }
  
  .chip_plasma_656d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .container_stone_78d3 {
    padding: var(--space-lg) 0;
  }
  
  .logo-82f1 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .logo-82f1 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .outer-8826 {
    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;
  }
  
  .chip_plasma_656d {
    grid-template-columns: 1fr;
  }
  
  .down-ec32,
  .background_hovered_f6e1,
  .slider-dark-5262 {
    flex-direction: column;
    width: 100%;
  }
  
  .motion-50b7,
  .wrapper_wood_070d,
  .down-ec32 .outer-8826,
  .background_hovered_f6e1 .outer-8826 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .accordion_east_4f0a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .active_lower_d757 {
    font-size: 1.375rem;
  }
  
  .old_ab21 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .main-full-600d,
  .narrow-ed7a,
  .disabled_58a1,
  .next-53a5,
  .fixed_2bab {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .picture-top-bbc7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .search_db1c {
    gap: var(--space-xs);
  }
  
  .warm_7b64 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion_6d9a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .lite_9524 {
    width: 150px;
    height: 150px;
  }
  
  .status-4615 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .secondary-stale-3e4a,
  .backdrop_b734,
  .down-ec32,
  .glass-65da,
  .new_ffd1,
  .popup-large-b99f,
  .breadcrumb-a693 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .container_stone_78d3 {
    page-break-inside: avoid;
  }
}

/* css-noise: ffed */
.shadow-element-r0 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
