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

.menu_1d1a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.gradient-stone-a551,
header,
.layout-3a05,
.hidden-down-f3ec,
.short_7159,
.border-mini-7599,
.disabled-d610,
.plasma_e606,
.static-d2ba {
  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
   ============================================ */
.gradient-stone-a551 {
  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);
}

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

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

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

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

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

.old-6bd9 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.advanced_28d9 {
  flex: 1;
}

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

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

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

.popup_6714.fn-active-d6ee {
  background: var(--color-primary);
  color: white;
}

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

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

.copper-ba7b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.preview-7902 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.panel-plasma-3901[aria-expanded="true"] .tag_solid_82cb:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .advanced_28d9 {
    display: none;
  }
  
  .panel-plasma-3901 {
    display: flex;
  }
  
  .dirty_6585 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .preview-7902,
  .info_wood_8b9d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .cold_f47d {
    position: relative;
  }
  
  .picture_04d1 {
    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;
  }
  
  .copper-ba7b[aria-expanded="true"] + .picture_04d1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .iron-299b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .red_ef70 {
    gap: 8px;
  }
  
  .preview-7902 {
    display: none;
  }
  
  .info_wood_8b9d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .old-6bd9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.next_3718 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.container-full-dc78 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.light-a104 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

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

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

.easy-877c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .thick-df9f {
    grid-template-columns: 1fr;
  }
  
  .detail-d8c5 {
    font-size: 1.75rem;
  }
  
  .shadow_huge_9348 {
    order: -1;
    max-width: 100%;
  }
  
  .easy-877c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail-d8c5 {
    font-size: 1.5rem;
  }
  
  .medium_e902 {
    font-size: 1rem;
  }
  
  .right_582b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .easy-877c {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.texture-steel-b1aa {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.feature-69fd {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.black-22c6 {
  background: var(--color-bg-section);
}

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

.accordion-black-6e55 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper_e574 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_d6fb {
    grid-template-columns: 1fr;
  }
  
  .iron_cce8 {
    font-size: 1.75rem;
  }
  
  .panel_c366 {
    max-width: 100%;
  }
}

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

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

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

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

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

.breadcrumb-plasma-8ab6 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.large_d5b3 {
  flex-shrink: 0;
}

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

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

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

.table_44f0,
.grid_e153,
.outline-outer-0bb4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table_44f0 thead,
.grid_e153 thead {
  background: var(--color-primary);
  color: white;
}

.table_44f0 th,
.table_44f0 td,
.grid_e153 th,
.grid_e153 td,
.outline-outer-0bb4 th,
.outline-outer-0bb4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .table_44f0 th,
  .table_44f0 td,
  .grid_e153 th,
  .grid_e153 td,
  .outline-outer-0bb4 th,
  .outline-outer-0bb4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .table_44f0,
  .grid_e153,
  .outline-outer-0bb4 {
    min-width: 600px;
  }
}

.table_44f0 th,
.grid_e153 th,
.outline-outer-0bb4 th {
  font-weight: 600;
}

.table_44f0 tbody tr:hover,
.grid_e153 tbody tr:hover,
.outline-outer-0bb4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.dark-d897 h4 {
  color: white;
}

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

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

.frame-east-b278:last-child {
  border-bottom: none;
}

.frame-east-b278 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.frame-east-b278 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.video-upper-9bb5 {
  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);
}

.video-upper-9bb5 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.message-fluid-38ec {
  color: #4caf50;
}

.pagination_1eaf {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.section-1a03 {
  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;
}

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

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

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

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

.avatar-last-8de7 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

.label-next-33c4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.label-next-33c4 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.label-next-33c4 li {
  padding: var(--space-xs) 0;
  color: white;
}

.label-next-33c4 .section-hovered-afd7 {
  width: 100%;
  background: white;
}

.accordion-dirty-461a .section-hovered-afd7 {
  color: #667eea;
}

.gallery_motion_fc6d .section-hovered-afd7 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .table_upper_5450 {
    padding: var(--space-md);
  }
  
  .menu_selected_85cf {
    padding: var(--space-md);
  }
  
  .fast-62cd {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.new-fc58,
.card-7d90,
.tag_038c,
.icon-hot-ac87 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.medium-3d03 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.container-light-42ea {
  border-color: var(--color-warning);
}

.item_b105 {
  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_cd9c .item_b105 {
  background: #e8f5e9;
  color: var(--color-success);
}

.container-light-42ea .item_b105 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed_bbc9 {
  text-align: center;
}

.caption-narrow-b583 {
  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);
}

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

.caption-narrow-b583 .dropdown_black_36c2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.form-66f2 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-up-fc3a {
  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;
}

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

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

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

.footer_e1d3 {
  text-align: right;
}

.footer_e1d3 .image-ee75 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.modal-silver-7c46 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.texture_1c66 {
  background: #e8f5e9;
  color: #2e7d32;
}

.pattern-af35 {
  background: #e3f2fd;
  color: #1565c0;
}

.purple-e538 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

.tabs-warm-39d2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bottom-3436,
.accordion_f2b8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.bottom-3436 h4,
.accordion_f2b8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.bottom-3436 ul,
.accordion_f2b8 ul {
  list-style: none;
  padding: 0;
}

.bottom-3436 li,
.accordion_f2b8 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.current-6bdd {
  font-style: italic;
}

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

.hover-glass-0c40 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-2ff9 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-2ff9 li {
  margin-bottom: var(--space-xs);
}

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

.module-2ff9 a:hover {
  color: white;
}

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

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

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

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

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

.photo_simple_e7bb a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .hard-4951,
  .form-d453 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.icon-dark-95bb {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.icon-dark-95bb .badge_thick_a777 {
  color: #4caf50;
  font-size: 0.875rem;
}

.notification-west-d2ff {
  list-style: none;
  padding: 0;
}

.notification-west-d2ff li {
  margin-bottom: var(--space-xs);
}

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

.notification-west-d2ff a:hover {
  color: white;
}

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

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

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

.advanced_6bd5 a:hover {
  color: white;
}

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

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

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

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

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

.mini-21a5 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.mini-21a5 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;
}

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

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

@media (max-width: 768px) {
  .label_current_5e48 {
    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;
  }
  
  .detail-d8c5 {
    font-size: 2rem;
  }
  
  .iron_cce8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .thick-df9f,
  .disabled_d6fb {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .frame_west_0928,
  .section-copper-1713,
  .button-bb50,
  .card-c105,
  .dark-e5bd,
  .wide_cc50,
  .paragraph-c0da,
  .hard-4951,
  .form-d453 {
    grid-template-columns: 1fr;
  }
  
  .row_fixed_1a09 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .disabled-d610 {
    padding: var(--space-lg) 0;
  }
  
  .disabled_4140 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .disabled_4140 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .section-hovered-afd7 {
    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;
  }
  
  .row_fixed_1a09 {
    grid-template-columns: 1fr;
  }
  
  .easy-d8ed,
  .feature-009c,
  .table-action-33cb {
    flex-direction: column;
    width: 100%;
  }
  
  .texture-steel-b1aa,
  .feature-69fd,
  .easy-d8ed .section-hovered-afd7,
  .feature-009c .section-hovered-afd7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .detail-d8c5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .iron_cce8 {
    font-size: 1.375rem;
  }
  
  .disabled_solid_6322 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container_893b,
  .progress-slow-c19c,
  .paper-e77e,
  .over-7f93,
  .column-5c92 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .focused-402b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .overlay_31ed {
    gap: var(--space-xs);
  }
  
  .next_3718 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .video-upper-9bb5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .caption-narrow-b583 {
    width: 150px;
    height: 150px;
  }
  
  .primary_plasma_d240 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .gradient-stone-a551,
  .layout-3a05,
  .easy-d8ed,
  .hover-glass-0c40,
  .plasma_e606,
  .static-d2ba,
  .panel-plasma-3901 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .disabled-d610 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6c1a */
.phantom-card-u9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.3;
}
