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

.last-cb48:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.chip_right_1bdc,
header,
.breadcrumb-223e,
.gold-6bfe,
.fluid_5641,
.alert-6438,
.alert-purple-25f1,
.shadow_f57c,
.dark_0748 {
  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
   ============================================ */
.chip_right_1bdc {
  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);
}

.icon-8b69 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.current-72c0 img {
  height: 36px;
  width: auto;
  display: block;
}

.static-8e82 {
  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-443d {
  flex: 1;
}

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

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

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

.panel_f567.fn-active-f66b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.slider-first-d3e6 {
  position: relative;
}

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

.soft-4848 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.list-plasma-828b {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.summary-fixed-f5f2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .paragraph-443d {
    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-443d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .paragraph-443d.static_bbd4 {
    display: block;
    right: 0;
  }
  
  .frame_selected_4749 {
    flex-direction: column;
    gap: 0;
  }
  
  .panel_f567 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .paragraph-443d::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-443d.static_bbd4::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .paragraph-443d {
    display: none;
  }
  
  .up_59d6 {
    display: flex;
  }
  
  .static-8e82 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .summary-fixed-f5f2,
  .wrapper_hard_d805 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .slider-first-d3e6 {
    position: relative;
  }
  
  .brown-3806 {
    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;
  }
  
  .soft-4848[aria-expanded="true"] + .brown-3806 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast_b0ae {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .list-plasma-828b {
    gap: 8px;
  }
  
  .summary-fixed-f5f2 {
    display: none;
  }
  
  .wrapper_hard_d805 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .current-72c0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.notice_yellow_44b3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.widget-024a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .input_d279 {
    grid-template-columns: 1fr;
  }
  
  .chip-a159 {
    font-size: 1.75rem;
  }
  
  .breadcrumb_43e6 {
    order: -1;
    max-width: 100%;
  }
  
  .status_a778 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .chip-a159 {
    font-size: 1.5rem;
  }
  
  .in-978b {
    font-size: 1rem;
  }
  
  .widget-024a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .status_a778 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.aside_0800 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.focus_first_26b9 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.carousel-action-8b6d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.alert-purple-25f1 {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-0082 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) {
  .slider_9bfd {
    grid-template-columns: 1fr;
  }
  
  .image_large_3fdc {
    font-size: 1.75rem;
  }
  
  .sort_c506 {
    max-width: 100%;
  }
}

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

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

.tooltip-plasma-2402 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.video_hard_b389 {
  flex-shrink: 0;
}

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

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

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

.feature_tiny_2d26,
.down-774b,
.aside_bc26 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature_tiny_2d26 thead,
.down-774b thead {
  background: var(--color-primary);
  color: white;
}

.feature_tiny_2d26 th,
.feature_tiny_2d26 td,
.down-774b th,
.down-774b td,
.aside_bc26 th,
.aside_bc26 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .feature_tiny_2d26 th,
  .feature_tiny_2d26 td,
  .down-774b th,
  .down-774b td,
  .aside_bc26 th,
  .aside_bc26 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .feature_tiny_2d26,
  .down-774b,
  .aside_bc26 {
    min-width: 600px;
  }
}

.feature_tiny_2d26 th,
.down-774b th,
.aside_bc26 th {
  font-weight: 600;
}

.feature_tiny_2d26 tbody tr:hover,
.down-774b tbody tr:hover,
.aside_bc26 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.short_33a2 h4 {
  color: white;
}

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

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

.image_678c:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.logo-orange-6853 {
  list-style: none;
  padding: 0;
}

.logo-orange-6853 li {
  padding: var(--space-xs) 0;
}

.column-1d86 {
  color: #4caf50;
}

.element_south_9ac6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.dim-0e1a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-dirty-6a27 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.container-dirty-6a27 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.container-dirty-6a27 li {
  padding: var(--space-xs) 0;
  color: white;
}

.container-dirty-6a27 .cold_fc31 {
  width: 100%;
  background: white;
}

.secondary_large_f96a .cold_fc31 {
  color: #667eea;
}

.gradient-7827 .cold_fc31 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.header-solid-681b {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

@media (max-width: 768px) {
  .shadow_3fc7 {
    padding: var(--space-md);
  }
  
  .tiny_6c86 {
    padding: var(--space-md);
  }
  
  .advanced_414b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.block_562b,
.paper_18a3,
.aside-a619,
.input-hard-5a18 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.section-basic-633d {
  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-basic-633d {
    font-size: 0.625rem;
  }
}

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

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

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

.first-58e9 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 768px) {
  .secondary-pink-3c16 {
    grid-template-columns: 1fr;
  }
}

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

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

.search-stone-a58d {
  border-color: var(--color-warning);
}

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

.thick-ec29 .texture_6874 {
  background: #e8f5e9;
  color: var(--color-success);
}

.search-stone-a58d .texture_6874 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.section-black-6a52 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

.chip-plasma-081d {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.wide_8148 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.detail-9bd8 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.under-0458 {
  border: 2px solid #4caf50;
}

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

.aside-63c4 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.dropdown_fa95 {
  text-align: right;
}

.dropdown_fa95 .button-712c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.title-center-b232 {
  background: #e8f5e9;
  color: #2e7d32;
}

.soft-fa5a {
  background: #e3f2fd;
  color: #1565c0;
}

.current-86ba {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.focus-thick-e0e8 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.block-lower-4d1c {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.pattern_6d47[aria-expanded="true"] .block-lower-4d1c {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_d813 ul,
.grid_5835 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.button_9ad3 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.block-5e76 {
  font-style: italic;
}

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

.logo-lower-d102 {
  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;
}

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

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

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

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

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

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

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

.component-iron-a5ab {
  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);
}

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

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

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

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

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

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

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

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

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

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

.over-efd2 .fixed_7823 {
  color: #4caf50;
  font-size: 0.875rem;
}

.mask-41b2 {
  list-style: none;
  padding: 0;
}

.mask-41b2 li {
  margin-bottom: var(--space-xs);
}

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

.mask-41b2 a:hover {
  color: white;
}

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

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

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

.widget_new_79b6 a:hover {
  color: white;
}

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

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

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

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

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

.backdrop-cold-4de9 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.backdrop-cold-4de9:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .primary_south_17ac {
    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;
  }
  
  .chip-a159 {
    font-size: 2rem;
  }
  
  .image_large_3fdc {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .input_d279,
  .slider_9bfd {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .article_bronze_67ee,
  .secondary-pink-3c16,
  .section-86c5,
  .link_97dc,
  .title-f3cc,
  .label_small_3ecb,
  .cold_cfe8,
  .row_smooth_568e {
    grid-template-columns: 1fr;
  }
  
  .rough_adc8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .alert-purple-25f1 {
    padding: var(--space-lg) 0;
  }
  
  .shade_c82c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shade_c82c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cold_fc31 {
    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;
  }
  
  .rough_adc8 {
    grid-template-columns: 1fr;
  }
  
  .accordion_focused_fd50,
  .status-active-4368,
  .purple-df8e {
    flex-direction: column;
    width: 100%;
  }
  
  .aside_0800,
  .focus_first_26b9,
  .accordion_focused_fd50 .cold_fc31,
  .status-active-4368 .cold_fc31 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .chip-a159 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .image_large_3fdc {
    font-size: 1.375rem;
  }
  
  .motion_4eef {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .carousel-action-8b6d,
  .module_1af2,
  .over-ca8a,
  .grid-bcc0,
  .panel_old_d092 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .section-basic-633d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .heading_64cb {
    gap: var(--space-xs);
  }
  
  .notice_yellow_44b3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .mask_fdc0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .grid_wide_958a {
    width: 150px;
    height: 150px;
  }
  
  .panel_north_5378 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .chip_right_1bdc,
  .breadcrumb-223e,
  .accordion_focused_fd50,
  .logo-lower-d102,
  .shadow_f57c,
  .dark_0748,
  .up_59d6 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .alert-purple-25f1 {
    page-break-inside: avoid;
  }
}

/* css-noise: 3291 */
.phantom-card-m2 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
