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

.filter_complex_4762:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.soft-d5c5,
header,
.cold_8868,
.text_yellow_2b9c,
.frame_stale_f752,
.content_4c65,
.motion_4d6a,
.paragraph_copper_87d4,
.tooltip-under-fd7a {
  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
   ============================================ */
.soft-d5c5 {
  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);
}

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

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

/* Scrolled state */
.soft-d5c5.outline_dark_5b89 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.wrapper-5fce {
  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;
}

.hero-7789 {
  flex: 1;
}

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

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

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

.highlight_ef35.fn-active-d238 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.shade-current-38bb {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.form-5226 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.basic-c4d9[aria-expanded="true"] .out-e993:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .hero-7789 {
    display: none;
  }
  
  .basic-c4d9 {
    display: flex;
  }
  
  .wrapper-5fce {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .form-5226,
  .yellow_46e7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .shade-current-38bb {
    position: relative;
  }
  
  .secondary_light_cc98 {
    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;
  }
  
  .progress_0a52[aria-expanded="true"] + .secondary_light_cc98 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .cool_6fc2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .slow-bacd {
    gap: 8px;
  }
  
  .form-5226 {
    display: none;
  }
  
  .yellow_46e7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .search_rough_90d7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.notice-easy-1326 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-easy-1326 svg {
  flex-shrink: 0;
}

.notice-easy-1326 a {
  color: var(--color-primary);
  text-decoration: none;
}

.notice-easy-1326 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.primary-lite-9316 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .notice_basic_6772 {
    grid-template-columns: 1fr;
  }
  
  .in-048f {
    font-size: 1.75rem;
  }
  
  .title_gold_301b {
    order: -1;
    max-width: 100%;
  }
  
  .easy_bb17 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .in-048f {
    font-size: 1.5rem;
  }
  
  .basic_f95a {
    font-size: 1rem;
  }
  
  .primary-lite-9316 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .easy_bb17 {
    max-width: 250px;
  }
}

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

.tabs-7eae {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.header-920b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.accordion-hot-fdd7 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.hero-slow-26c0 {
  list-style: none;
  counter-reset: toc-counter;
}

.hero-slow-26c0 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.hero-slow-26c0 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);
}

.hero-slow-26c0 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;
}

.hero-slow-26c0 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny_cd69 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) {
  .nav-11a5 {
    grid-template-columns: 1fr;
  }
  
  .notice-c97f {
    font-size: 1.75rem;
  }
  
  .static_37c3 {
    max-width: 100%;
  }
}

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

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

.complex-69fa {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.outline-pro-78c0 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.logo_outer_6ee9 {
  flex-shrink: 0;
}

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

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

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

.pagination_7264,
.nav-bronze-e21e,
.tag-e196 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pagination_7264 thead,
.nav-bronze-e21e thead {
  background: var(--color-primary);
  color: white;
}

.pagination_7264 th,
.pagination_7264 td,
.nav-bronze-e21e th,
.nav-bronze-e21e td,
.tag-e196 th,
.tag-e196 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pagination_7264 th,
  .pagination_7264 td,
  .nav-bronze-e21e th,
  .nav-bronze-e21e td,
  .tag-e196 th,
  .tag-e196 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pagination_7264,
  .nav-bronze-e21e,
  .tag-e196 {
    min-width: 600px;
  }
}

.pagination_7264 th,
.nav-bronze-e21e th,
.tag-e196 th {
  font-weight: 600;
}

.pagination_7264 tbody tr:hover,
.nav-bronze-e21e tbody tr:hover,
.tag-e196 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.avatar-99cc h4 {
  color: white;
}

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

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

.status-329f:last-child {
  border-bottom: none;
}

.status-329f dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.status-329f dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

.pattern-92d9 {
  list-style: none;
  padding: 0;
}

.pattern-92d9 li {
  padding: var(--space-xs) 0;
}

.feature_up_c7a4 {
  color: #4caf50;
}

.link_basic_5cd3 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-soft-18ca {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.summary-soft-18ca ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.summary-soft-18ca li {
  padding: var(--space-xs) 0;
  color: white;
}

.summary-soft-18ca .thumbnail-332e {
  width: 100%;
  background: white;
}

.detail-complex-c5ae .thumbnail-332e {
  color: #667eea;
}

.center-c32a .thumbnail-332e {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .huge_ef05 {
    padding: var(--space-md);
  }
  
  .green-b2f3 {
    padding: var(--space-md);
  }
  
  .block-cold-4a53 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.block-cold-4a53 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.tabs_61e7,
.feature_069b,
.badge_d5e3,
.dim_e45d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.feature-full-0e81 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

.tag-153c {
  border-color: var(--color-success);
}

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

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

.tag-153c .summary_current_2f23 {
  background: #e8f5e9;
  color: var(--color-success);
}

.notification_0ec4 .summary_current_2f23 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.over-89ea {
  margin-top: var(--space-xxl);
}

.tag-ccd9 {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.paper_3c30 {
  text-align: center;
}

.hard-1dc1 {
  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);
}

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

.hard-1dc1 .media_short_bf1a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.input-orange-2b33 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.message-huge-0f70 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.box-new-3d7e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.carousel-b3c1 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.disabled_0fa0 {
  text-align: right;
}

.disabled_0fa0 .highlight_ad9e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.caption-right-9fba {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

.photo-1c7e {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.outline-003b {
  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);
}

.outline-003b:hover {
  background: var(--color-bg-alt);
}

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

.outline-003b[aria-expanded="true"] .filter_c002 {
  transform: rotate(180deg);
}

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

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

.caption-simple-59ab ul,
.caption-simple-59ab ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.caption-simple-59ab li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone_0ef8 ul,
.fresh_6df7 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.tertiary-last-5cf2 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.icon_clean_3193 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall-c003 a:hover {
  color: white;
}

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

.thumbnail-81f1 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);
}

.thumbnail-81f1 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.layout-glass-e9fd {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.layout-glass-e9fd a:hover {
  color: white;
}

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

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

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

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

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

.heading-922b .pro-ecda {
  color: #4caf50;
  font-size: 0.875rem;
}

.slider-paper-64ef {
  list-style: none;
  padding: 0;
}

.slider-paper-64ef li {
  margin-bottom: var(--space-xs);
}

.slider-paper-64ef a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.slider-paper-64ef a:hover {
  color: white;
}

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

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

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

.pink_84ac a:hover {
  color: white;
}

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

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

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

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

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

.preview-in-1fad a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.preview-in-1fad 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;
}

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

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

@media (max-width: 768px) {
  .smooth_8ccf {
    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;
  }
  
  .in-048f {
    font-size: 2rem;
  }
  
  .notice-c97f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .notice_basic_6772,
  .nav-11a5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .status_6579,
  .tiny_ead4,
  .list_warm_5a5b,
  .south-81e8,
  .south_e773,
  .button_soft_e909,
  .tertiary_b5c5,
  .fluid-2561,
  .modal_9aea {
    grid-template-columns: 1fr;
  }
  
  .blue-d561 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .motion_4d6a {
    padding: var(--space-lg) 0;
  }
  
  .hero-slow-26c0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hero-slow-26c0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .thumbnail-332e {
    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;
  }
  
  .blue-d561 {
    grid-template-columns: 1fr;
  }
  
  .primary_82dc,
  .shade-948e,
  .hot_0731 {
    flex-direction: column;
    width: 100%;
  }
  
  .header-920b,
  .accordion-hot-fdd7,
  .primary_82dc .thumbnail-332e,
  .shade-948e .thumbnail-332e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .in-048f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notice-c97f {
    font-size: 1.375rem;
  }
  
  .badge_27bd {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .footer-9eb4,
  .tabs-8114,
  .component_bottom_d77a,
  .banner-plasma-17eb,
  .layout-smooth-289e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .section-eb69 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .action_75d8 {
    gap: var(--space-xs);
  }
  
  .notice-easy-1326 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .wood_b8c3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hard-1dc1 {
    width: 150px;
    height: 150px;
  }
  
  .footer_f2e9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .soft-d5c5,
  .cold_8868,
  .primary_82dc,
  .next_fa77,
  .paragraph_copper_87d4,
  .tooltip-under-fd7a,
  .basic-c4d9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .motion_4d6a {
    page-break-inside: avoid;
  }
}

/* css-noise: 8f0e */
.promo-block-f6 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
