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

.first-c109:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.focused-61d8,
header,
.list_add3,
.short-ceb0,
.smooth-77b8,
.dim-b119,
.border-up-7b67,
.gold-14c6,
.light-5cb8 {
  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
   ============================================ */
.focused-61d8 {
  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);
}

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

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

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

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

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

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

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

.button-f642 {
  flex: 1;
}

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

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

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

.selected-4646.fn-active-aea4 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.outline-purple-6e4f {
  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;
}

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

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

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

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

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

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

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

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

.white_cd2c svg {
  flex-shrink: 0;
}

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

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

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

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

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

.aside-north-6de6 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.down_6210[aria-expanded="true"] .aside-north-6de6:nth-child(2) {
  opacity: 0;
}

.down_6210[aria-expanded="true"] .aside-north-6de6:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .button-f642::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .button-f642.focus-rough-55a1 {
    display: block;
    right: 0;
  }
  
  .backdrop_focused_8c26 {
    flex-direction: column;
    gap: 0;
  }
  
  .selected-4646 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .button-f642::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;
  }
  
  .button-f642.focus-rough-55a1::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .button-f642 {
    display: none;
  }
  
  .down_6210 {
    display: flex;
  }
  
  .steel_8dbf {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .white_cd2c,
  .primary_759c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .title_dynamic_c07b {
    position: relative;
  }
  
  .outline-purple-6e4f {
    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;
  }
  
  .in_552e[aria-expanded="true"] + .outline-purple-6e4f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .column_dcd8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .first-bec9 {
    gap: 8px;
  }
  
  .white_cd2c {
    display: none;
  }
  
  .primary_759c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .media_60f6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.filter_dynamic_a67c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-8a89 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-8a89 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.slow-733a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hero-copper-e5ed {
    grid-template-columns: 1fr;
  }
  
  .cold-9211 {
    font-size: 1.75rem;
  }
  
  .box_slow_2851 {
    order: -1;
    max-width: 100%;
  }
  
  .slow-733a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cold-9211 {
    font-size: 1.5rem;
  }
  
  .logo_dim_b57b {
    font-size: 1rem;
  }
  
  .component_a88a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .slow-733a {
    max-width: 250px;
  }
}

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

.table-8ec3 {
  background: var(--color-primary);
  color: white;
}

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

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

.header-over-5779:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.widget-clean-90da {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.mini-31ae {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.layout-basic-b291 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.layout-basic-b291 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);
}

.layout-basic-b291 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.border-up-7b67 {
  padding: var(--space-xxl) 0;
}

.icon-dim-fbce {
  background: var(--color-bg-section);
}

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

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

.wood-2d23 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_d190 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) {
  .progress-middle-47ca {
    grid-template-columns: 1fr;
  }
  
  .wood-2d23 {
    font-size: 1.75rem;
  }
  
  .notice_6253 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .wood-2d23 {
    font-size: 1.5rem;
  }
  
  .notice_6253 h3 {
    font-size: 1.375rem;
  }
  
  .notice_6253 h4 {
    font-size: 1.125rem;
  }
}

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

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

.wrapper-orange-b7e5 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.short-338c {
  flex-shrink: 0;
}

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

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

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

.texture_b4cf,
.description-41f4,
.highlight-south-fb1b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.texture_b4cf thead,
.description-41f4 thead {
  background: var(--color-primary);
  color: white;
}

.texture_b4cf th,
.texture_b4cf td,
.description-41f4 th,
.description-41f4 td,
.highlight-south-fb1b th,
.highlight-south-fb1b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .texture_b4cf th,
  .texture_b4cf td,
  .description-41f4 th,
  .description-41f4 td,
  .highlight-south-fb1b th,
  .highlight-south-fb1b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .texture_b4cf,
  .description-41f4,
  .highlight-south-fb1b {
    min-width: 600px;
  }
}

.texture_b4cf th,
.description-41f4 th,
.highlight-south-fb1b th {
  font-weight: 600;
}

.texture_b4cf tbody tr:hover,
.description-41f4 tbody tr:hover,
.highlight-south-fb1b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.footer-stale-ebed h4 {
  color: white;
}

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

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

.tag-right-417d:last-child {
  border-bottom: none;
}

.tag-right-417d dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.tag-right-417d dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.box-first-406b:hover {
  text-decoration: underline;
}

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

.overlay-tall-1492 {
  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);
}

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

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

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

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

.nav_fluid_316b {
  color: #4caf50;
}

.menu_old_1d61 {
  color: #ff9800;
}

.picture-lite-11b9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

.tabs-middle-89ab {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.highlight-simple-57a4 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text_middle_63b9 .middle_356a {
  width: 100%;
  background: white;
}

.badge_gas_db48 .middle_356a {
  color: #667eea;
}

.plasma_8a3d .middle_356a {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .texture-cdd5 {
    padding: var(--space-md);
  }
  
  .avatar-7937 {
    padding: var(--space-md);
  }
  
  .light-65b7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.dirty_f175,
.border_stone_e213,
.hot_bf98,
.current-c93f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-a2ae .panel_down_c729 {
  background: #e8f5e9;
  color: var(--color-success);
}

.thick_8d31 .panel_down_c729 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask_181f {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-out-52d1 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.plasma-7cd8 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.grid-fd2a {
  text-align: right;
}

.grid-fd2a .wrapper-stone-2076 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.thumbnail-solid-4af9 {
  background: #e8f5e9;
  color: #2e7d32;
}

.chip-aa0e {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.down-b335[aria-expanded="true"] .breadcrumb_1dbd {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo_9678 ul,
.tertiary_66c6 ul {
  list-style: none;
  padding: 0;
}

.photo_9678 li,
.tertiary_66c6 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.block_medium_94eb {
  font-style: italic;
}

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

.button-dark-64fe {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-fast-b1ce {
  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) */
.pressed-9aca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.sidebar_bright_7a93 a:hover {
  color: white;
}

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

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

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

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

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

.sidebar-4236 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .wrapper-fast-b1ce,
  .pressed-9aca {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.slow-7233 .frame_e846 {
  color: #4caf50;
  font-size: 0.875rem;
}

.upper-72e2 {
  list-style: none;
  padding: 0;
}

.upper-72e2 li {
  margin-bottom: var(--space-xs);
}

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

.upper-72e2 a:hover {
  color: white;
}

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

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

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

.link_54e8 a:hover {
  color: white;
}

.hard-5f9a {
  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);
}

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

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

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

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

.notice-middle-f6b5 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.notice-middle-f6b5 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;
}

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

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

@media (max-width: 768px) {
  .hard-5f9a {
    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;
  }
  
  .cold-9211 {
    font-size: 2rem;
  }
  
  .wood-2d23 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hero-copper-e5ed,
  .progress-middle-47ca {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .alert_current_5b79,
  .black_2e0b,
  .search_5b83,
  .info_de9b,
  .outline-0f99,
  .dynamic-031c,
  .modal-f9b1,
  .wrapper-fast-b1ce,
  .pressed-9aca {
    grid-template-columns: 1fr;
  }
  
  .gold-76f7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .border-up-7b67 {
    padding: var(--space-lg) 0;
  }
  
  .layout-basic-b291 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .layout-basic-b291 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .middle_356a {
    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;
  }
  
  .gold-76f7 {
    grid-template-columns: 1fr;
  }
  
  .sidebar_2600,
  .old_c5c3,
  .gallery_abcd {
    flex-direction: column;
    width: 100%;
  }
  
  .widget-clean-90da,
  .mini-31ae,
  .sidebar_2600 .middle_356a,
  .old_c5c3 .middle_356a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .cold-9211 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .wood-2d23 {
    font-size: 1.375rem;
  }
  
  .label_9179 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .down-89cb,
  .logo_fd00,
  .frame-silver-c20b,
  .bronze-618a,
  .logo-586a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid_up_ff71 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .column_dd1c {
    gap: var(--space-xs);
  }
  
  .filter_dynamic_a67c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .overlay-tall-1492 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .bright_b3e8 {
    width: 150px;
    height: 150px;
  }
  
  .motion_6ead {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focused-61d8,
  .list_add3,
  .sidebar_2600,
  .button-dark-64fe,
  .gold-14c6,
  .light-5cb8,
  .down_6210 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .border-up-7b67 {
    page-break-inside: avoid;
  }
}

/* css-noise: 0ceb */
.shadow-element-r2 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
