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

.huge-a2dc:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.article_4751,
header,
.overlay-outer-7874,
.alert_514a,
.backdrop-586f,
.layout-motion-f2aa,
.description_pink_418e,
.panel-a35f,
.in-2089 {
  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
   ============================================ */
.article_4751 {
  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);
}

.gallery-fresh-e427 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.article_4751.table-rough-96ab {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.dim-7d1f {
  flex: 1;
}

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

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

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

.title-a29b.fn-active-9b4c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-5ee6 svg {
  flex-shrink: 0;
}

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

.simple-550c: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);
}

.simple-550c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.fluid-d1b3[aria-expanded="true"] .column-3da6:nth-child(2) {
  opacity: 0;
}

.fluid-d1b3[aria-expanded="true"] .column-3da6:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .dim-7d1f {
    display: none;
  }
  
  .fluid-d1b3 {
    display: flex;
  }
  
  .mini_770d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .banner-5ee6,
  .simple-550c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .mask_solid_cdc0 {
    position: relative;
  }
  
  .title_d737 {
    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;
  }
  
  .accent_liquid_bac2[aria-expanded="true"] + .title_d737 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .input-hard-56af {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .fixed_72fe {
    gap: 8px;
  }
  
  .banner-5ee6 {
    display: none;
  }
  
  .simple-550c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .image_6d7c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.action_1977 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.video-bronze-1af5 {
  color: var(--color-text-lighter);
}

.picture-paper-367a {
  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) {
  .picture-paper-367a {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .picture-paper-367a {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

.notification-pressed-957d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .frame-active-86b3 {
    grid-template-columns: 1fr;
  }
  
  .picture-paper-367a {
    font-size: 1.75rem;
  }
  
  .row-8085 {
    order: -1;
    max-width: 100%;
  }
  
  .nav_f94b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .picture-paper-367a {
    font-size: 1.5rem;
  }
  
  .tag-7ca1 {
    font-size: 1rem;
  }
  
  .focus_dfdf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .nav_f94b {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.item-hard-304d {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.first-144d {
  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);
}

.sidebar-15c0 {
  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);
}

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

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

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

.grid-cold-3e6e {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.grid-cold-3e6e img {
  max-width: 100%;
  height: auto;
  display: block;
}

.grid-cold-3e6e pre,
.grid-cold-3e6e code {
  overflow-x: auto;
  max-width: 100%;
}

.grid-cold-3e6e 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);
}

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

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

.grid-cold-3e6e p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.grid-cold-3e6e ul,
.grid-cold-3e6e ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.grid-cold-3e6e li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.grid-cold-3e6e strong {
  font-weight: 600;
  color: var(--color-text);
}

.grid-cold-3e6e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.grid-cold-3e6e a:hover {
  color: var(--color-primary-dark);
}

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

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

.purple_5780 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) {
  .badge-white-ef7e {
    grid-template-columns: 1fr;
  }
  
  .sidebar-15c0 {
    font-size: 1.75rem;
  }
  
  .grid-cold-3e6e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sidebar-15c0 {
    font-size: 1.5rem;
  }
  
  .grid-cold-3e6e h3 {
    font-size: 1.375rem;
  }
  
  .grid-cold-3e6e h4 {
    font-size: 1.125rem;
  }
}

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

.title-6f94 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.brown_4777 {
  flex-shrink: 0;
}

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

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

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

.accent-over-c7a1,
.gold_abfc,
.status_9e1c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accent-over-c7a1 thead,
.gold_abfc thead {
  background: var(--color-primary);
  color: white;
}

.accent-over-c7a1 th,
.accent-over-c7a1 td,
.gold_abfc th,
.gold_abfc td,
.status_9e1c th,
.status_9e1c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .accent-over-c7a1 th,
  .accent-over-c7a1 td,
  .gold_abfc th,
  .gold_abfc td,
  .status_9e1c th,
  .status_9e1c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .accent-over-c7a1,
  .gold_abfc,
  .status_9e1c {
    min-width: 600px;
  }
}

.accent-over-c7a1 th,
.gold_abfc th,
.status_9e1c th {
  font-weight: 600;
}

.accent-over-c7a1 tbody tr:hover,
.gold_abfc tbody tr:hover,
.status_9e1c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.west-c9f6 h4 {
  color: white;
}

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

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

.detail-full-fd35:last-child {
  border-bottom: none;
}

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

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

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

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

.bottom-59d4:hover {
  text-decoration: underline;
}

.layout-left-2e0b {
  text-align: center;
  margin-bottom: var(--space-md);
}

.pattern-dim-9a61 {
  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);
}

.pattern-dim-9a61 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.gradient-c0ef {
  font-weight: 600;
  color: white;
}

.prev-785b {
  list-style: none;
  padding: 0;
}

.prev-785b li {
  padding: var(--space-xs) 0;
}

.message_cool_bb62 {
  color: #4caf50;
}

.cool_1545 {
  color: #ff9800;
}

.border-west-2c06 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-new-06b8 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.tertiary_89df .widget-415b {
  width: 100%;
  background: white;
}

.gradient_40f9 .widget-415b {
  color: #667eea;
}

.steel_0e9b .widget-415b {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .status_wide_218e {
    padding: var(--space-md);
  }
  
  .center_f0fc {
    padding: var(--space-md);
  }
  
  .fresh-4983 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.static-caaa,
.thumbnail-1a1d,
.current-b300,
.copper-65a8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.notice-stale-9f24 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

.detail-plasma-8ed0 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.east-53fd {
  border-color: var(--color-warning);
}

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

.steel_e269 .item_north_a90f {
  background: #e8f5e9;
  color: var(--color-success);
}

.east-53fd .item_north_a90f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.lower-3e2c {
  margin-top: var(--space-xxl);
}

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

.grid-51da {
  text-align: center;
}

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

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

.notice-under-add3 .gradient-c0ef {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-narrow-33e0 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.overlay-hovered-4daf {
  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;
}

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

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

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

.notification-orange-2041 {
  text-align: right;
}

.notification-orange-2041 .warm_8b5c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.main-short-2532 {
  background: #e8f5e9;
  color: #2e7d32;
}

.banner-b5a3 {
  background: #e3f2fd;
  color: #1565c0;
}

.basic-7587 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.header-red-231e {
  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);
}

.header-red-231e:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.nav-tiny-59e4 {
  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);
}

.nav-tiny-59e4:hover {
  background: var(--color-bg-alt);
}

.row-10b5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.nav-tiny-59e4[aria-expanded="true"] .row-10b5 {
  transform: rotate(180deg);
}

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

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

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

.steel-45a7 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.narrow-55ce {
  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);
}

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

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

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

.caption_d699,
.slow-2899 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.caption_d699 h4,
.slow-2899 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.caption_d699 ul,
.slow-2899 ul {
  list-style: none;
  padding: 0;
}

.caption_d699 li,
.slow-2899 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.header-dirty-2bcb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.under_68c6 a:hover {
  color: white;
}

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

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

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

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

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

.glass_67e4 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .tall-2cef,
  .red_13be {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.text_ac1b .texture_9726 {
  color: #4caf50;
  font-size: 0.875rem;
}

.module-new-1d33 {
  list-style: none;
  padding: 0;
}

.module-new-1d33 li {
  margin-bottom: var(--space-xs);
}

.module-new-1d33 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.module-new-1d33 a:hover {
  color: white;
}

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

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

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

.menu_7aac a:hover {
  color: white;
}

.tertiary-8eb6 {
  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);
}

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

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

.item-old-59b5 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.header-5f22:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tertiary-8eb6 {
    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;
  }
  
  .picture-paper-367a {
    font-size: 2rem;
  }
  
  .sidebar-15c0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .frame-active-86b3,
  .badge-white-ef7e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .clean_c945,
  .hard_686d,
  .small_f933,
  .feature-f1b5,
  .sort-paper-8604,
  .short-8bf3,
  .out_f7fd,
  .tall-2cef,
  .red_13be {
    grid-template-columns: 1fr;
  }
  
  .description-green-6046 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .description_pink_418e {
    padding: var(--space-lg) 0;
  }
  
  .logo_south_d8b6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .logo_south_d8b6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .widget-415b {
    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;
  }
  
  .description-green-6046 {
    grid-template-columns: 1fr;
  }
  
  .notification-pressed-957d,
  .background-4c2e,
  .narrow-aed2 {
    flex-direction: column;
    width: 100%;
  }
  
  .container_6ae4,
  .item-hard-304d,
  .notification-pressed-957d .widget-415b,
  .background-4c2e .widget-415b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .picture-paper-367a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sidebar-15c0 {
    font-size: 1.375rem;
  }
  
  .media-upper-c86d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .new-1d05,
  .background_a173,
  .paragraph-pressed-d3b3,
  .center-e95e,
  .description_under_05df {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .outline-c9ec {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .accent-paper-82fe {
    gap: var(--space-xs);
  }
  
  .action_1977 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pattern-dim-9a61 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .notice-under-add3 {
    width: 150px;
    height: 150px;
  }
  
  .right_4933 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .article_4751,
  .overlay-outer-7874,
  .notification-pressed-957d,
  .wood-f776,
  .panel-a35f,
  .in-2089,
  .fluid-d1b3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .description_pink_418e {
    page-break-inside: avoid;
  }
}

/* css-noise: a8dc */
.widget-item-o8 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
