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

.alert-cold-b30d:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.bronze-d900,
header,
.banner-0f14,
.up_90b4,
.list-fc9c,
.card_05f8,
.media-2dc6,
.basic_85de,
.modal_6ece {
  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
   ============================================ */
.bronze-d900 {
  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);
}

.primary-copper-5601 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.progress-full-9334 {
  flex: 1;
}

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

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

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

.hard_7987.fn-active-80b4 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay_fast_7331 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.video-narrow-ba32[aria-expanded="true"] .grid_1a4f:nth-child(2) {
  opacity: 0;
}

.video-narrow-ba32[aria-expanded="true"] .grid_1a4f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .progress-full-9334 {
    display: none;
  }
  
  .video-narrow-ba32 {
    display: flex;
  }
  
  .column_soft_85d1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .overlay_fast_7331,
  .surface_cold_33ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .article_new_aa05 {
    position: relative;
  }
  
  .dropdown_slow_d129 {
    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;
  }
  
  .link_512e[aria-expanded="true"] + .dropdown_slow_d129 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .small-927a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .copper-357d {
    gap: 8px;
  }
  
  .overlay_fast_7331 {
    display: none;
  }
  
  .surface_cold_33ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .shade_bfc2 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.search_thick_63fc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.outer-1510 a:hover {
  text-decoration: underline;
}

.border-motion-6d0b {
  color: var(--color-text-lighter);
}

.notification-stone-600d {
  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) {
  .notification-stone-600d {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .notification-stone-600d {
    font-size: 1.5rem;
  }
}

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

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

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

.border-simple-dc9c {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.content-956c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.logo-static-0fa0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .shadow-upper-609c {
    grid-template-columns: 1fr;
  }
  
  .notification-stone-600d {
    font-size: 1.75rem;
  }
  
  .complex_89e2 {
    order: -1;
    max-width: 100%;
  }
  
  .content-956c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification-stone-600d {
    font-size: 1.5rem;
  }
  
  .label_static_8bcc {
    font-size: 1rem;
  }
  
  .outer-1510 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .content-956c {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.badge-active-86ee {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.row-center-43b6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

.chip-e574 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph_dim_1444 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) {
  .accent-72e6 {
    grid-template-columns: 1fr;
  }
  
  .gold_68a2 {
    font-size: 1.75rem;
  }
  
  .large_f8bd {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.breadcrumb_down_9e20 {
  flex-shrink: 0;
}

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

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

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

.preview-complex-10db,
.mask_5313,
.accordion_a830 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.preview-complex-10db thead,
.mask_5313 thead {
  background: var(--color-primary);
  color: white;
}

.preview-complex-10db th,
.preview-complex-10db td,
.mask_5313 th,
.mask_5313 td,
.accordion_a830 th,
.accordion_a830 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .preview-complex-10db th,
  .preview-complex-10db td,
  .mask_5313 th,
  .mask_5313 td,
  .accordion_a830 th,
  .accordion_a830 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .preview-complex-10db,
  .mask_5313,
  .accordion_a830 {
    min-width: 600px;
  }
}

.preview-complex-10db th,
.mask_5313 th,
.accordion_a830 th {
  font-weight: 600;
}

.preview-complex-10db tbody tr:hover,
.mask_5313 tbody tr:hover,
.accordion_a830 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.module_a703 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav_6233 {
  color: #4caf50;
}

.mini-8da3 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-fixed-4d36 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cold-a14f .iron-d62e {
  width: 100%;
  background: white;
}

.action-84e3 .iron-d62e {
  color: #667eea;
}

.background_a1d4 .iron-d62e {
  color: #f5576c;
}

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

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

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

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

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

.heading-13c6 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .complex_5df1 {
    padding: var(--space-md);
  }
  
  .heading-13c6 {
    padding: var(--space-md);
  }
  
  .down-fc3b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.box-hot-943b ol,
.box-hot-943b ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.box-hot-943b li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.stone-d1b6,
.purple-7191,
.stale-1f3e,
.feature_purple_e73f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.popup-complex-c7b8:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

.secondary_upper_20ea {
  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_upper_20ea {
    grid-template-columns: 1fr;
  }
}

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

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

.secondary-tiny-b37e {
  border-color: var(--color-warning);
}

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

.picture_out_8f4f .input-c96d {
  background: #e8f5e9;
  color: var(--color-success);
}

.secondary-tiny-b37e .input-c96d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.next-49d0 {
  margin-top: var(--space-xxl);
}

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

.motion_625c {
  text-align: center;
}

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

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

.west-2308 .overlay_medium_dbda {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.icon-inner-4e82 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.west-8b59 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.blue-5acc {
  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;
}

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

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

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

.message_f5af {
  text-align: right;
}

.message_f5af .caption-in-97f6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.paragraph-42ec {
  background: #fff3e0;
  color: #e65100;
}

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

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

.surface-next-ddf3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.prev_47c2[aria-expanded="true"] .filter-0f89 {
  transform: rotate(180deg);
}

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

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

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

.mask-focused-0bd4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.picture-09bb {
  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);
}

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

.title_action_690c {
  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_action_690c {
    grid-template-columns: 1fr;
  }
}

.secondary_south_b638,
.background-19f6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.secondary_south_b638 h4,
.background-19f6 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.secondary_south_b638 ul,
.background-19f6 ul {
  list-style: none;
  padding: 0;
}

.secondary_south_b638 li,
.background-19f6 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.banner-steel-c828 ul {
  list-style: none;
  padding: 0;
}

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

.texture-up-2e99 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.image_silver_d2a4 {
  font-style: italic;
}

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

.dirty-099c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description_light_1f63 .border-simple-dc9c {
  color: #4caf50;
  font-size: 0.875rem;
}

.gold-283b {
  list-style: none;
  padding: 0;
}

.gold-283b li {
  margin-bottom: var(--space-xs);
}

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

.gold-283b a:hover {
  color: white;
}

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

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

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

.description_inner_26a0 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .preview_out_2ff5 {
    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;
  }
  
  .notification-stone-600d {
    font-size: 2rem;
  }
  
  .gold_68a2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .shadow-upper-609c,
  .accent-72e6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .right-36a4,
  .secondary_upper_20ea,
  .title-d279,
  .slider_3c19,
  .title_action_690c,
  .detail-8ce5,
  .fluid-a753,
  .steel-4b31 {
    grid-template-columns: 1fr;
  }
  
  .list-motion-7997 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .media-2dc6 {
    padding: var(--space-lg) 0;
  }
  
  .chip-e574 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .chip-e574 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .iron-d62e {
    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;
  }
  
  .list-motion-7997 {
    grid-template-columns: 1fr;
  }
  
  .dark-faa1,
  .mask_complex_70cf,
  .dropdown_motion_800e {
    flex-direction: column;
    width: 100%;
  }
  
  .badge-active-86ee,
  .up-a668,
  .dark-faa1 .iron-d62e,
  .mask_complex_70cf .iron-d62e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification-stone-600d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gold_68a2 {
    font-size: 1.375rem;
  }
  
  .left-f18d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .row-center-43b6,
  .media_upper_2afe,
  .gradient-d78e,
  .pattern-dim-0de9,
  .plasma_f987 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .feature-194c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hovered_071f {
    gap: var(--space-xs);
  }
  
  .search_thick_63fc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .dynamic_9476 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .west-2308 {
    width: 150px;
    height: 150px;
  }
  
  .filter_beab {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .bronze-d900,
  .banner-0f14,
  .dark-faa1,
  .dirty-099c,
  .basic_85de,
  .modal_6ece,
  .video-narrow-ba32 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .media-2dc6 {
    page-break-inside: avoid;
  }
}

/* css-noise: 61af */
.promo-block-d1 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
