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

.preview-587b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.basic-b9a9,
header,
.detail-outer-da02,
.text-hot-e235,
.pattern-5aef,
.lite-7d39,
.box-silver-f4d4,
.next-43f6,
.link_95a7 {
  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
   ============================================ */
.basic-b9a9 {
  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);
}

.notification-last-bb39 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.last-93da {
  flex: 1;
}

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

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

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

.grid-d94c.fn-active-78ba {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.green-1f77 {
  position: relative;
}

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

.footer-875c svg {
  transition: transform 0.2s ease;
}

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

.focused-6bf9 {
  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;
}

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

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

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

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

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

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

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

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

.item-12e3 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.surface_0cf5 {
  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_0cf5: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_0cf5 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.short-cc77[aria-expanded="true"] .gradient_b1e3:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .last-93da {
    display: none;
  }
  
  .short-cc77 {
    display: flex;
  }
  
  .primary-865e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .item-12e3,
  .surface_0cf5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .green-1f77 {
    position: relative;
  }
  
  .focused-6bf9 {
    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;
  }
  
  .footer-875c[aria-expanded="true"] + .focused-6bf9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .chip-46fd {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .disabled_b4cf {
    gap: 8px;
  }
  
  .item-12e3 {
    display: none;
  }
  
  .surface_0cf5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .aside_bronze_0239 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.cool-84e4 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cool-84e4 svg {
  flex-shrink: 0;
}

.cool-84e4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.cool-84e4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.west-e846 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark-ec44 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .huge_80ef {
    grid-template-columns: 1fr;
  }
  
  .frame_7955 {
    font-size: 1.75rem;
  }
  
  .main_first_2426 {
    order: -1;
    max-width: 100%;
  }
  
  .dark-ec44 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .frame_7955 {
    font-size: 1.5rem;
  }
  
  .pattern-7186 {
    font-size: 1rem;
  }
  
  .west-e846 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .dark-ec44 {
    max-width: 250px;
  }
}

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

.popup-08e7 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.bright-801f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-ad83 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature_short_f042 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) {
  .new-856e {
    grid-template-columns: 1fr;
  }
  
  .banner_wood_b170 {
    font-size: 1.75rem;
  }
  
  .avatar_2549 {
    max-width: 100%;
  }
}

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

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

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

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

.warm-22fc {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.gradient-f622 {
  flex-shrink: 0;
}

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

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

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

.liquid-aa81,
.progress_huge_15bd,
.layout-e9e0 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.liquid-aa81 thead,
.progress_huge_15bd thead {
  background: var(--color-primary);
  color: white;
}

.liquid-aa81 th,
.liquid-aa81 td,
.progress_huge_15bd th,
.progress_huge_15bd td,
.layout-e9e0 th,
.layout-e9e0 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .liquid-aa81 th,
  .liquid-aa81 td,
  .progress_huge_15bd th,
  .progress_huge_15bd td,
  .layout-e9e0 th,
  .layout-e9e0 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .liquid-aa81,
  .progress_huge_15bd,
  .layout-e9e0 {
    min-width: 600px;
  }
}

.liquid-aa81 th,
.progress_huge_15bd th,
.layout-e9e0 th {
  font-weight: 600;
}

.liquid-aa81 tbody tr:hover,
.progress_huge_15bd tbody tr:hover,
.layout-e9e0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.texture_medium_fc48 h4 {
  color: white;
}

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

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

.logo-efc8:last-child {
  border-bottom: none;
}

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

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

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

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

.gas-2287:hover {
  text-decoration: underline;
}

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

.rough-74a5 {
  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);
}

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

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

.logo-3b1a {
  list-style: none;
  padding: 0;
}

.logo-3b1a li {
  padding: var(--space-xs) 0;
}

.link_advanced_d5b3 {
  color: #4caf50;
}

.heading_fluid_9af2 {
  color: #ff9800;
}

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

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

.article-silver-46be {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture_f885 .focus_narrow_35c3 {
  width: 100%;
  background: white;
}

.paragraph_55d8 .focus_narrow_35c3 {
  color: #667eea;
}

.text_prev_3b7f .focus_narrow_35c3 {
  color: #f5576c;
}

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

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

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

.notice-liquid-4bbd {
  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);
}

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

.dynamic-170d {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .plasma_9f20 {
    padding: var(--space-md);
  }
  
  .dynamic-170d {
    padding: var(--space-md);
  }
  
  .upper-0ca6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.popup_2f1f,
.lite_2c46,
.preview_green_81d5,
.widget_322f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.section_brown_02c7 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .section_brown_02c7 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.widget-copper-cfb1 {
  border-color: var(--color-warning);
}

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

.small_a3cc .right_8449 {
  background: #e8f5e9;
  color: var(--color-success);
}

.widget-copper-cfb1 .right_8449 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.module-liquid-211b {
  margin-top: var(--space-xxl);
}

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

.title-cc33 {
  text-align: center;
}

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

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

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

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

.layout-693c p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.panel-orange-00a0 {
  color: var(--color-text-light);
}

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

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

.mask-wide-4e78 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.focus-old-82e6 {
  border: 2px solid #4caf50;
}

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

.form-5edb {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.preview-80d1 {
  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;
}

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

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

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

.title_0d20 {
  text-align: right;
}

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

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

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

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

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

.chip-soft-86b3 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.thumbnail-full-c599 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.red-670a {
  background: #fff3e0;
  color: #e65100;
}

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

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

.breadcrumb-black-adb8 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.module_a05c[aria-expanded="true"] .white_6054 {
  transform: rotate(180deg);
}

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

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

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

.popup-steel-8e2a li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.outer-4b6d {
  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);
}

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

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

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

.solid-6a4b,
.text-bottom-9186 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.solid-6a4b h4,
.text-bottom-9186 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.solid-6a4b ul,
.text-bottom-9186 ul {
  list-style: none;
  padding: 0;
}

.solid-6a4b li,
.text-bottom-9186 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-88d0 {
  font-style: italic;
}

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

.section-55fb {
  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;
}

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

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

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

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

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

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

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

.table-focused-527e {
  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);
}

.table-focused-527e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.table-focused-527e p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.modal-ca73 a:hover {
  color: white;
}

.texture-0db1 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.texture-0db1 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);
}

.texture-0db1 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.dim_60bf a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .message-bright-d7a3,
  .outer-f0cd {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.description-middle-5b22 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.description-middle-5b22 .pink-ef55 {
  color: #4caf50;
  font-size: 0.875rem;
}

.module-cold-cc84 {
  list-style: none;
  padding: 0;
}

.module-cold-cc84 li {
  margin-bottom: var(--space-xs);
}

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

.module-cold-cc84 a:hover {
  color: white;
}

.paper-8272 {
  list-style: none;
  padding: 0;
}

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

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

.paper-8272 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .complex_e795 {
    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;
  }
  
  .frame_7955 {
    font-size: 2rem;
  }
  
  .banner_wood_b170 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .huge_80ef,
  .new-856e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tooltip-3dd4,
  .glass_9b88,
  .fixed_7254,
  .button_2843,
  .wood_8758,
  .slider_762b,
  .lower_b09c,
  .message-bright-d7a3,
  .outer-f0cd {
    grid-template-columns: 1fr;
  }
  
  .photo_a2d6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .box-silver-f4d4 {
    padding: var(--space-lg) 0;
  }
  
  .description-ad83 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .description-ad83 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focus_narrow_35c3 {
    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;
  }
  
  .photo_a2d6 {
    grid-template-columns: 1fr;
  }
  
  .accent_a8ef,
  .modal-429d,
  .shade_2e55 {
    flex-direction: column;
    width: 100%;
  }
  
  .banner-2626,
  .bright-801f,
  .accent_a8ef .focus_narrow_35c3,
  .modal-429d .focus_narrow_35c3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .frame_7955 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .banner_wood_b170 {
    font-size: 1.375rem;
  }
  
  .secondary_c061 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .title_silver_acf8,
  .sort_9baf,
  .active-dcd1,
  .hidden_98b9,
  .element-tall-5215 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .section_brown_02c7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .texture-old-94bd {
    gap: var(--space-xs);
  }
  
  .cool-84e4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .rough-74a5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .info_eba8 {
    width: 150px;
    height: 150px;
  }
  
  .upper_664c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .basic-b9a9,
  .detail-outer-da02,
  .accent_a8ef,
  .section-55fb,
  .next-43f6,
  .link_95a7,
  .short-cc77 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .box-silver-f4d4 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1056 */
.phantom-card-o4 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.1;
}
