/* ============================================
   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)
   ============================================ */
.status-left-49e9 {
  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;
}

.status-left-49e9:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.fast-4cea,
header,
.heading_gas_846f,
.wide_d899,
.module-b478,
.basic-9b49,
.sort_plasma_e759,
.layout-56b9,
.brown-35c0 {
  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
   ============================================ */
.fast-4cea {
  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);
}

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

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

/* Scrolled state */
.fast-4cea.disabled-bottom-be38 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.secondary-fresh-ee5b img {
  height: 36px;
  width: auto;
  display: block;
}

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

.north-425a {
  flex: 1;
}

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

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

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

.stale_f714.fn-active-ad28 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.static-023f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .north-425a::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .north-425a.media_current_86cd {
    display: block;
    right: 0;
  }
  
  .description_965a {
    flex-direction: column;
    gap: 0;
  }
  
  .stale_f714 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .north-425a::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;
  }
  
  .north-425a.media_current_86cd::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .north-425a {
    display: none;
  }
  
  .light_4c02 {
    display: flex;
  }
  
  .image-5225 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .static-023f,
  .badge-c8af {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .gallery_south_2a23 {
    position: relative;
  }
  
  .modal-c6ca {
    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_24ad[aria-expanded="true"] + .modal-c6ca {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .clean-53e9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .alert_f9a1 {
    gap: 8px;
  }
  
  .static-023f {
    display: none;
  }
  
  .badge-c8af {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .secondary-fresh-ee5b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.message_advanced_98cf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.logo-down-8350 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.alert-9d92 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alert-9d92 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .background-glass-dcbb {
    grid-template-columns: 1fr;
  }
  
  .header_64ef {
    font-size: 1.75rem;
  }
  
  .gas_3584 {
    order: -1;
    max-width: 100%;
  }
  
  .aside_tall_58c4 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .header_64ef {
    font-size: 1.5rem;
  }
  
  .panel_4494 {
    font-size: 1rem;
  }
  
  .focus_eee4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .aside_tall_58c4 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.input-rough-4077 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.status-easy-04ff {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.aside-d693 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.aside-d693 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

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

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

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

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

.plasma-91ae {
  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);
}

.title-4d88 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_orange_6447 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) {
  .disabled_bright_af75 {
    grid-template-columns: 1fr;
  }
  
  .title-4d88 {
    font-size: 1.75rem;
  }
  
  .huge_a62b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .title-4d88 {
    font-size: 1.5rem;
  }
  
  .huge_a62b h3 {
    font-size: 1.375rem;
  }
  
  .huge_a62b h4 {
    font-size: 1.125rem;
  }
}

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

.hidden-iron-d709 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.narrow_8c9a {
  flex-shrink: 0;
}

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

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

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

.footer-5717,
.accordion-top-eb77,
.pink-dd84 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.footer-5717 thead,
.accordion-top-eb77 thead {
  background: var(--color-primary);
  color: white;
}

.footer-5717 th,
.footer-5717 td,
.accordion-top-eb77 th,
.accordion-top-eb77 td,
.pink-dd84 th,
.pink-dd84 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-5717 th,
  .footer-5717 td,
  .accordion-top-eb77 th,
  .accordion-top-eb77 td,
  .pink-dd84 th,
  .pink-dd84 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .footer-5717,
  .accordion-top-eb77,
  .pink-dd84 {
    min-width: 600px;
  }
}

.footer-5717 th,
.accordion-top-eb77 th,
.pink-dd84 th {
  font-weight: 600;
}

.footer-5717 tbody tr:hover,
.accordion-top-eb77 tbody tr:hover,
.pink-dd84 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.video-right-7b07 h4 {
  color: white;
}

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

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

.mini-b489:last-child {
  border-bottom: none;
}

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

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

.frame-dirty-66ec {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

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

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

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

.selected-aba6 {
  list-style: none;
  padding: 0;
}

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

.item_66ed {
  color: #4caf50;
}

.accent_8b6a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.avatar-yellow-3aea {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-glass-0f74 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.carousel-glass-0f74 .detail_fd2a {
  width: 100%;
  background: white;
}

.background_advanced_ac84 .detail_fd2a {
  color: #667eea;
}

.block-top-a92e .detail_fd2a {
  color: #f5576c;
}

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

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

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

.notice-solid-916b {
  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);
}

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

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

@media (max-width: 768px) {
  .item_short_378a {
    padding: var(--space-md);
  }
  
  .item-cac7 {
    padding: var(--space-md);
  }
  
  .detail-hard-96cf {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.detail-hard-96cf {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.thumbnail-liquid-a33e,
.pro-d2da,
.panel-active-f1f6,
.simple_b328 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.link-e3f3 {
  border-color: var(--color-success);
}

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

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

.link-e3f3 .media_stone_d70d {
  background: #e8f5e9;
  color: var(--color-success);
}

.out-ff9b .media_stone_d70d {
  background: #fff3e0;
  color: var(--color-warning);
}

.highlight-tall-39b7 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.highlight-tall-39b7 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.info-5452 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.carousel-3bdf {
  margin-top: var(--space-xxl);
}

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

.paper_e9f4 {
  text-align: center;
}

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

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

.form-2513 .filter_left_6162 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.fresh-4b29 {
  color: var(--color-text-light);
}

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

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

.prev-ab7e {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.prev-e845 {
  text-align: right;
}

.prev-e845 .iron_afcb {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.photo-009b {
  background: #e8f5e9;
  color: #2e7d32;
}

.tertiary-87a0 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.dim-9ee3 {
  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);
}

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

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

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

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

.shade-advanced-5b7b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.picture-d8a2[aria-expanded="true"] .new_3eeb {
  transform: rotate(180deg);
}

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

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

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

.thumbnail-advanced-de45 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .wrapper-fresh-8ea8 {
    grid-template-columns: 1fr;
  }
}

.table_stone_e8f8,
.avatar-bbcf {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.table_stone_e8f8 h4,
.avatar-bbcf h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.table_stone_e8f8 ul,
.avatar-bbcf ul {
  list-style: none;
  padding: 0;
}

.table_stone_e8f8 li,
.avatar-bbcf li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.fast-1f28 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.backdrop_green_e555 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-hovered-a310 {
  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) */
.module_879c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.pagination_77de a:hover {
  color: white;
}

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

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

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

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

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

.photo_2625 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .table-hovered-a310,
  .module_879c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.logo-upper-87ec h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

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

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

.component_rough_aaad .red-f4d2 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.secondary_8cf8 a:hover {
  color: white;
}

.layout-6c2e {
  list-style: none;
  padding: 0;
}

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

.layout-6c2e a {
  color: #b0b0b0;
  text-decoration: none;
}

.layout-6c2e a:hover {
  color: white;
}

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

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

.element-mini-fb09 a {
  color: #4caf50;
  text-decoration: none;
}

.header-black-42e1 {
  font-size: 0.75rem;
  color: #666666;
}

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

.pro-7d0c a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.pro-7d0c 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;
}

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

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

@media (max-width: 768px) {
  .middle_73fe {
    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;
  }
  
  .header_64ef {
    font-size: 2rem;
  }
  
  .title-4d88 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .background-glass-dcbb,
  .disabled_bright_af75 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .dirty-60af,
  .form-5b13,
  .accent_cool_17ad,
  .slider_27db,
  .wrapper-fresh-8ea8,
  .highlight-9e25,
  .avatar_f3df,
  .table-hovered-a310,
  .module_879c {
    grid-template-columns: 1fr;
  }
  
  .image-fluid-119c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sort_plasma_e759 {
    padding: var(--space-lg) 0;
  }
  
  .aside-d693 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .aside-d693 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .detail_fd2a {
    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;
  }
  
  .image-fluid-119c {
    grid-template-columns: 1fr;
  }
  
  .pink-ca70,
  .message_smooth_546f,
  .slider_cool_cd0a {
    flex-direction: column;
    width: 100%;
  }
  
  .input-rough-4077,
  .status-easy-04ff,
  .pink-ca70 .detail_fd2a,
  .message_smooth_546f .detail_fd2a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .header_64ef {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .title-4d88 {
    font-size: 1.375rem;
  }
  
  .slow-6431 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container-medium-a871,
  .hover-7517,
  .full_6f26,
  .hidden-white-bb6e,
  .avatar_wood_25cf {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gallery-d14b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .overlay_in_2031 {
    gap: var(--space-xs);
  }
  
  .message_advanced_98cf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .badge_up_9795 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .form-2513 {
    width: 150px;
    height: 150px;
  }
  
  .main-iron-eccb {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fast-4cea,
  .heading_gas_846f,
  .pink-ca70,
  .hero_4235,
  .layout-56b9,
  .brown-35c0,
  .light_4c02 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sort_plasma_e759 {
    page-break-inside: avoid;
  }
}

/* css-noise: c473 */
.ghost-box-c0 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
