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

.right_cb6f:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.focus-plasma-f932,
header,
.avatar_edcf,
.content-outer-79de,
.hovered-3641,
.button_e07c,
.summary_center_da56,
.gradient_focused_07ed,
.title_4ec7 {
  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
   ============================================ */
.focus-plasma-f932 {
  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);
}

.light-6981 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.focus-plasma-f932.short-138e {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.logo_32cd {
  flex: 1;
}

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

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

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

.footer_up_bbca.fn-active-4666 {
  background: var(--color-primary);
  color: white;
}

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

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

.backdrop-e016 svg {
  transition: transform 0.2s ease;
}

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

.overlay-warm-2b32 {
  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;
}

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

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

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

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

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

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

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

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

.hero-78ef svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.disabled_c20f[aria-expanded="true"] .card-f893:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .logo_32cd {
    display: none;
  }
  
  .disabled_c20f {
    display: flex;
  }
  
  .thick_aa1d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hero-78ef,
  .primary_2c14 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .card_active_f448 {
    position: relative;
  }
  
  .overlay-warm-2b32 {
    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;
  }
  
  .backdrop-e016[aria-expanded="true"] + .overlay-warm-2b32 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .rough-01b8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .heading_basic_8d6e {
    gap: 8px;
  }
  
  .hero-78ef {
    display: none;
  }
  
  .primary_2c14 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .advanced_e562 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.pink-9372 svg {
  flex-shrink: 0;
}

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

.pink-9372 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.avatar-da4d a:hover {
  text-decoration: underline;
}

.gradient-8c29 {
  color: var(--color-text-lighter);
}

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

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

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

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

@media (max-width: 768px) {
  .container-black-0a90 {
    grid-template-columns: 1fr;
  }
}

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

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

.bottom-5ff8 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bottom-5ff8 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .box-be46 {
    grid-template-columns: 1fr;
  }
  
  .tag-4f2d {
    font-size: 1.75rem;
  }
  
  .item-8397 {
    order: -1;
    max-width: 100%;
  }
  
  .search_345d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tag-4f2d {
    font-size: 1.5rem;
  }
  
  .tiny_2997 {
    font-size: 1rem;
  }
  
  .avatar-da4d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .search_345d {
    max-width: 250px;
  }
}

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

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

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

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

.light-146e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-soft-2102 {
  background: var(--color-bg-section);
}

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

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

.element-liquid-a551 {
  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);
}

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

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

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

.slider-last-6a82 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.slider-last-6a82 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.slider-last-6a82 pre,
.slider-last-6a82 code {
  overflow-x: auto;
  max-width: 100%;
}

.slider-last-6a82 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);
}

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

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

.slider-last-6a82 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.slider-last-6a82 ul,
.slider-last-6a82 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.slider-last-6a82 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.slider-last-6a82 strong {
  font-weight: 600;
  color: var(--color-text);
}

.slider-last-6a82 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.slider-last-6a82 a:hover {
  color: var(--color-primary-dark);
}

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

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

.menu_585c 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) {
  .tabs-dim-5602 {
    grid-template-columns: 1fr;
  }
  
  .element-liquid-a551 {
    font-size: 1.75rem;
  }
  
  .slider-last-6a82 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .element-liquid-a551 {
    font-size: 1.5rem;
  }
  
  .slider-last-6a82 h3 {
    font-size: 1.375rem;
  }
  
  .slider-last-6a82 h4 {
    font-size: 1.125rem;
  }
}

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

.outline-872e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

.background-down-8d0b strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.easy-8683 {
  flex-shrink: 0;
}

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

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

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

.label_22af,
.red_78e1,
.element_blue_e4c9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.label_22af thead,
.red_78e1 thead {
  background: var(--color-primary);
  color: white;
}

.label_22af th,
.label_22af td,
.red_78e1 th,
.red_78e1 td,
.element_blue_e4c9 th,
.element_blue_e4c9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .label_22af th,
  .label_22af td,
  .red_78e1 th,
  .red_78e1 td,
  .element_blue_e4c9 th,
  .element_blue_e4c9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .label_22af,
  .red_78e1,
  .element_blue_e4c9 {
    min-width: 600px;
  }
}

.label_22af th,
.red_78e1 th,
.element_blue_e4c9 th {
  font-weight: 600;
}

.label_22af tbody tr:hover,
.red_78e1 tbody tr:hover,
.element_blue_e4c9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.frame-left-dcc1 h4 {
  color: white;
}

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

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

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

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

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

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

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

.detail-fresh-dca5:hover {
  text-decoration: underline;
}

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

.column-in-7f82 {
  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);
}

.column-in-7f82 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.section_lower_ddb1 {
  color: #4caf50;
}

.hover-ec06 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.photo-3a6d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic_7871 .aside-2917 {
  width: 100%;
  background: white;
}

.wide-1db6 .aside-2917 {
  color: #667eea;
}

.column-cf8e .aside-2917 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .glass_b949 {
    padding: var(--space-md);
  }
  
  .surface_9b7c {
    padding: var(--space-md);
  }
  
  .button-in-e65b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.thumbnail-1eec li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.hero-6baf,
.nav-ec17,
.frame_d4bc,
.carousel_3982 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.popup-hot-6ef9 {
  border-color: var(--color-success);
}

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

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

.popup-hot-6ef9 .border_9eaa {
  background: #e8f5e9;
  color: var(--color-success);
}

.backdrop_fast_4308 .border_9eaa {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.background-west-0e94 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.west-4b31 {
  margin-top: var(--space-xxl);
}

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

.notification_a376 {
  text-align: center;
}

.article-pro-e051 {
  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);
}

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

.article-pro-e051 .filter_right_0fbf {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.summary-9b80 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.copper-66e6 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture-right-50f6 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.notification-1dfb {
  text-align: right;
}

.notification-1dfb .feature-d48d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.slow-5eec {
  background: #e8f5e9;
  color: #2e7d32;
}

.layout-a9d9 {
  background: #e3f2fd;
  color: #1565c0;
}

.yellow-4bb6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.text-top-89d7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.hovered-7374[aria-expanded="true"] .main-d30b {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .tabs-liquid-15f5 {
    grid-template-columns: 1fr;
  }
}

.inner-e0aa,
.outline-outer-0565 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.inner-e0aa h4,
.outline-outer-0565 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.inner-e0aa ul,
.outline-outer-0565 ul {
  list-style: none;
  padding: 0;
}

.inner-e0aa li,
.outline-outer-0565 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.menu-6a9e {
  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-hot-1df1 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge-01dd {
  list-style: none;
  padding: 0;
  margin: 0;
}

.badge-01dd li {
  margin-bottom: var(--space-xs);
}

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

.badge-01dd a:hover {
  color: white;
}

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

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

.selected-e31a a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.video_first_1a62 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .focused-77e8,
  .dropdown_mini_cbe9 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.component-under-6cf9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.component-under-6cf9 .paragraph_plasma_501a {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.box_3526 a:hover {
  color: white;
}

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

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

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

.grid_d7f3 a:hover {
  color: white;
}

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

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

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

.description-black-01e0 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .aside_a986 {
    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;
  }
  
  .tag-4f2d {
    font-size: 2rem;
  }
  
  .element-liquid-a551 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .box-be46,
  .tabs-dim-5602 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .chip-166d,
  .advanced-3e03,
  .background-upper-b9df,
  .picture-8342,
  .tabs-liquid-15f5,
  .list-advanced-9243,
  .hidden-a683,
  .focused-77e8,
  .dropdown_mini_cbe9 {
    grid-template-columns: 1fr;
  }
  
  .form-fb93 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .summary_center_da56 {
    padding: var(--space-lg) 0;
  }
  
  .lite_8dd2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .lite_8dd2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .aside-2917 {
    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;
  }
  
  .form-fb93 {
    grid-template-columns: 1fr;
  }
  
  .mask_df16,
  .first_1220,
  .breadcrumb_38f8 {
    flex-direction: column;
    width: 100%;
  }
  
  .panel_black_246f,
  .media_tiny_acb1,
  .mask_df16 .aside-2917,
  .first_1220 .aside-2917 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tag-4f2d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .element-liquid-a551 {
    font-size: 1.375rem;
  }
  
  .highlight-431d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hard_0958,
  .carousel_c3f1,
  .lite-bdae,
  .basic-7155,
  .overlay_0dbb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .mini-cd8d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .button-old-9f93 {
    gap: var(--space-xs);
  }
  
  .pink-9372 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column-in-7f82 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .article-pro-e051 {
    width: 150px;
    height: 150px;
  }
  
  .primary-fe2f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focus-plasma-f932,
  .avatar_edcf,
  .mask_df16,
  .media-1239,
  .gradient_focused_07ed,
  .title_4ec7,
  .disabled_c20f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .summary_center_da56 {
    page-break-inside: avoid;
  }
}

/* css-noise: 823c */
.ghost-box-p0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.3;
}
