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

.dynamic-de6a:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.feature-action-555f):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.feature-action-555f,
header,
.last_cc29,
.thumbnail_de79,
.left_f5e3,
.filter_8f60,
.tooltip_silver_00f7,
.static_06e7,
.inner-5ab2 {
  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
   ============================================ */
.feature-action-555f {
  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);
}

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

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

/* Scrolled state */
.feature-action-555f.stone-6dcc {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.red-d043 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.paragraph_03bc {
  flex: 1;
}

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

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

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

.steel_6b97.fn-active-6de1 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.component-full-ac88 {
  position: relative;
}

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

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

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

.summary-lower-cd75 {
  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;
}

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

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

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

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

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

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

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

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

.detail_pro_9d66 svg {
  flex-shrink: 0;
}

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

.title-40f8: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);
}

.title-40f8 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.north_b41c[aria-expanded="true"] .thick-8a52:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .paragraph_03bc {
    display: none;
  }
  
  .north_b41c {
    display: flex;
  }
  
  .badge-f3e2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .detail_pro_9d66,
  .title-40f8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component-full-ac88 {
    position: relative;
  }
  
  .summary-lower-cd75 {
    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-5030[aria-expanded="true"] + .summary-lower-cd75 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .stone_6165 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .over-94b1 {
    gap: 8px;
  }
  
  .detail_pro_9d66 {
    display: none;
  }
  
  .title-40f8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .red-d043 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.search-3ba8 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-3ba8 svg {
  flex-shrink: 0;
}

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

.search-3ba8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .status-copper-7c63 {
    font-size: 1.5rem;
  }
}

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

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

@media (max-width: 768px) {
  .input-center-4da0 {
    grid-template-columns: 1fr;
  }
}

.accent-action-7876 {
  display: flex;
  gap: var(--space-sm);
}

.aside-6c83 {
  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;
}

.shadow-9d17 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

.modal-hard-7cb6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.last-b379 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .element-hot-91f6 {
    grid-template-columns: 1fr;
  }
  
  .status-copper-7c63 {
    font-size: 1.75rem;
  }
  
  .small_b8dd {
    order: -1;
    max-width: 100%;
  }
  
  .last-b379 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .status-copper-7c63 {
    font-size: 1.5rem;
  }
  
  .header_soft_72d3 {
    font-size: 1rem;
  }
  
  .link_168a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .last-b379 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.article-simple-f8d6 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.button-over-43d8 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-dynamic-ef5e {
  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);
}

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

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

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

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

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

.summary-glass-bd81 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.summary-glass-bd81 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);
}

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

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

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

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

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

.summary-glass-bd81 strong {
  font-weight: 600;
  color: var(--color-text);
}

.summary-glass-bd81 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.summary-glass-bd81 a:hover {
  color: var(--color-primary-dark);
}

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

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

.hero_next_4c43 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) {
  .carousel-black-8378 {
    grid-template-columns: 1fr;
  }
  
  .texture_solid_3c61 {
    font-size: 1.75rem;
  }
  
  .summary-glass-bd81 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .texture_solid_3c61 {
    font-size: 1.5rem;
  }
  
  .summary-glass-bd81 h3 {
    font-size: 1.375rem;
  }
  
  .summary-glass-bd81 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.text-22de {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.widget-eb78 {
  flex-shrink: 0;
}

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

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

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

.title-blue-6d67,
.card_109b,
.outline-wood-5db3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.title-blue-6d67 thead,
.card_109b thead {
  background: var(--color-primary);
  color: white;
}

.title-blue-6d67 th,
.title-blue-6d67 td,
.card_109b th,
.card_109b td,
.outline-wood-5db3 th,
.outline-wood-5db3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .title-blue-6d67 th,
  .title-blue-6d67 td,
  .card_109b th,
  .card_109b td,
  .outline-wood-5db3 th,
  .outline-wood-5db3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .title-blue-6d67,
  .card_109b,
  .outline-wood-5db3 {
    min-width: 600px;
  }
}

.title-blue-6d67 th,
.card_109b th,
.outline-wood-5db3 th {
  font-weight: 600;
}

.title-blue-6d67 tbody tr:hover,
.card_109b tbody tr:hover,
.outline-wood-5db3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.list-small-1cbc {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.chip_dynamic_5b82 h4 {
  color: white;
}

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

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

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

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

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

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

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

.hidden-easy-3c73:hover {
  text-decoration: underline;
}

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

.element-dynamic-5558 {
  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);
}

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

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

.wrapper-dim-3c1b {
  list-style: none;
  padding: 0;
}

.wrapper-dim-3c1b li {
  padding: var(--space-xs) 0;
}

.notice-hard-c7f0 {
  color: #4caf50;
}

.detail_307b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_629e .first-acc1 {
  width: 100%;
  background: white;
}

.input-7c1c .first-acc1 {
  color: #667eea;
}

.rough_b2b1 .first-acc1 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .list_last_36a3 {
    padding: var(--space-md);
  }
  
  .disabled_purple_773b {
    padding: var(--space-md);
  }
  
  .surface-center-42d9 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.fixed-3e9c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.yellow-b20e,
.disabled-0451,
.steel-4004,
.highlight-cool-ac54 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.module-bright-0f9a:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.fresh_7973 .full_d613 {
  background: #e8f5e9;
  color: var(--color-success);
}

.card_ed61 .full_d613 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.medium-022b {
  margin-top: var(--space-xxl);
}

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

.heading_stale_47b5 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video-brown-1d7d {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.breadcrumb-fixed-36f7 {
  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;
}

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

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

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

.static-48db {
  text-align: right;
}

.static-48db .alert-full-2deb {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.search-current-da0c {
  background: #e8f5e9;
  color: #2e7d32;
}

.card-8583 {
  background: #e3f2fd;
  color: #1565c0;
}

.notice-new-7059 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.advanced-4efe {
  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);
}

.advanced-4efe:hover {
  background: var(--color-bg-alt);
}

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

.advanced-4efe[aria-expanded="true"] .article_left_af88 {
  transform: rotate(180deg);
}

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

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

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

.light-446e li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.article-fast-4ed3,
.banner_68b4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.article-fast-4ed3 h4,
.banner_68b4 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.article-fast-4ed3 ul,
.banner_68b4 ul {
  list-style: none;
  padding: 0;
}

.article-fast-4ed3 li,
.banner_68b4 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.sidebar-warm-5602 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.secondary-375f {
  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);
}

.menu-6a29 {
  font-style: italic;
}

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

.icon-tiny-865e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas_f2c7 a:hover {
  color: white;
}

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

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

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

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

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

.overlay-fcd1 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .notification_9407,
  .top-f2f0 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.logo_20a9 .accent-action-7876 {
  color: #4caf50;
  font-size: 0.875rem;
}

.dim-45d2 {
  list-style: none;
  padding: 0;
}

.dim-45d2 li {
  margin-bottom: var(--space-xs);
}

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

.dim-45d2 a:hover {
  color: white;
}

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

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

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

.highlight_dark_8f09 a:hover {
  color: white;
}

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

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

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

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

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

.paragraph-under-90f5 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.paragraph-under-90f5 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;
}

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

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

@media (max-width: 768px) {
  .rough_4d16 {
    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;
  }
  
  .status-copper-7c63 {
    font-size: 2rem;
  }
  
  .texture_solid_3c61 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .element-hot-91f6,
  .carousel-black-8378 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .description_pro_411e,
  .active-e2c2,
  .block_action_feb2,
  .label_b8af,
  .wood_f5ae,
  .aside-377d,
  .breadcrumb_down_48fd,
  .notification_9407,
  .top-f2f0 {
    grid-template-columns: 1fr;
  }
  
  .message_4c0e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tooltip_silver_00f7 {
    padding: var(--space-lg) 0;
  }
  
  .bottom_bed0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .bottom_bed0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .first-acc1 {
    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;
  }
  
  .message_4c0e {
    grid-template-columns: 1fr;
  }
  
  .modal-hard-7cb6,
  .wrapper_motion_a6f2,
  .column-over-366e {
    flex-direction: column;
    width: 100%;
  }
  
  .article-simple-f8d6,
  .button-over-43d8,
  .modal-hard-7cb6 .first-acc1,
  .wrapper_motion_a6f2 .first-acc1 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .status-copper-7c63 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .texture_solid_3c61 {
    font-size: 1.375rem;
  }
  
  .text_2418 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .backdrop_c96b,
  .black-6a05,
  .mask_2151,
  .border_00dc,
  .west_8469 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dirty_e58a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .accordion_9fc0 {
    gap: var(--space-xs);
  }
  
  .search-3ba8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .element-dynamic-5558 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .title_inner_aee8 {
    width: 150px;
    height: 150px;
  }
  
  .gradient_short_e4fe {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .feature-action-555f,
  .last_cc29,
  .modal-hard-7cb6,
  .icon-tiny-865e,
  .static_06e7,
  .inner-5ab2,
  .north_b41c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tooltip_silver_00f7 {
    page-break-inside: avoid;
  }
}

/* css-noise: 27ed */
.phantom-card-z9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
