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

.disabled_short_f51b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.description_hot_eb8c,
header,
.article-70bd,
.notification-solid-fa72,
.pattern_tiny_75d9,
.accordion_rough_5466,
.focus_09ae,
.right-36a5,
.alert-971b {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

.outline-west-ebb9 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.layout-609f {
  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;
}

.inner_bbc9 {
  flex: 1;
}

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

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

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

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

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

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

.avatar-tiny-e87f svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.breadcrumb-bottom-9a2c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.simple-4470 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.dirty-0f62[aria-expanded="true"] .row_558a:nth-child(2) {
  opacity: 0;
}

.dirty-0f62[aria-expanded="true"] .row_558a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .inner_bbc9::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .inner_bbc9.warm-fe07 {
    display: block;
    right: 0;
  }
  
  .soft-8bc1 {
    flex-direction: column;
    gap: 0;
  }
  
  .tiny_8e3d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .inner_bbc9::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;
  }
  
  .inner_bbc9.warm-fe07::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .inner_bbc9 {
    display: none;
  }
  
  .dirty-0f62 {
    display: flex;
  }
  
  .layout-609f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .simple-4470,
  .lite_570b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .container_a1a3 {
    position: relative;
  }
  
  .tertiary_45a3 {
    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;
  }
  
  .avatar-tiny-e87f[aria-expanded="true"] + .tertiary_45a3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .over-e456 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .breadcrumb-bottom-9a2c {
    gap: 8px;
  }
  
  .simple-4470 {
    display: none;
  }
  
  .lite_570b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .badge_bright_d7e2 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.advanced_c346 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-east-2bbf {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.notification-00c3 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .mask-064b {
    grid-template-columns: 1fr;
  }
  
  .dynamic_7834 {
    font-size: 1.75rem;
  }
  
  .dark-fcc9 {
    order: -1;
    max-width: 100%;
  }
  
  .notification-00c3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dynamic_7834 {
    font-size: 1.5rem;
  }
  
  .west_2d2a {
    font-size: 1rem;
  }
  
  .backdrop_46fa {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notification-00c3 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-stale-0236 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.carousel-stale-0236 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);
}

.carousel-stale-0236 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thick-f5f7 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) {
  .white_1752 {
    grid-template-columns: 1fr;
  }
  
  .overlay-231e {
    font-size: 1.75rem;
  }
  
  .mask_d54e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .overlay-231e {
    font-size: 1.5rem;
  }
  
  .mask_d54e h3 {
    font-size: 1.375rem;
  }
  
  .mask_d54e h4 {
    font-size: 1.125rem;
  }
}

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

.slider-last-52a9 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.basic-519b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.tall-07e5 {
  flex-shrink: 0;
}

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

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

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

.pattern-warm-0c2c,
.easy_1fa7,
.carousel_f259 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pattern-warm-0c2c thead,
.easy_1fa7 thead {
  background: var(--color-primary);
  color: white;
}

.pattern-warm-0c2c th,
.pattern-warm-0c2c td,
.easy_1fa7 th,
.easy_1fa7 td,
.carousel_f259 th,
.carousel_f259 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pattern-warm-0c2c th,
  .pattern-warm-0c2c td,
  .easy_1fa7 th,
  .easy_1fa7 td,
  .carousel_f259 th,
  .carousel_f259 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pattern-warm-0c2c,
  .easy_1fa7,
  .carousel_f259 {
    min-width: 600px;
  }
}

.pattern-warm-0c2c th,
.easy_1fa7 th,
.carousel_f259 th {
  font-weight: 600;
}

.pattern-warm-0c2c tbody tr:hover,
.easy_1fa7 tbody tr:hover,
.carousel_f259 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.label-hot-01c4 h4 {
  color: white;
}

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

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

.thumbnail-fresh-dfca:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.accordion-copper-9258 {
  font-weight: 600;
  color: white;
}

.background-817c {
  list-style: none;
  padding: 0;
}

.background-817c li {
  padding: var(--space-xs) 0;
}

.message_e18a {
  color: #4caf50;
}

.easy_e077 {
  color: #ff9800;
}

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

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

.tabs-right-71bc {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-active-739b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.modal-active-739b ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.modal-active-739b li {
  padding: var(--space-xs) 0;
  color: white;
}

.modal-active-739b .pink-c9c7 {
  width: 100%;
  background: white;
}

.east_7d3b .pink-c9c7 {
  color: #667eea;
}

.fresh_314a .pink-c9c7 {
  color: #f5576c;
}

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

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

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

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

.east-9dcf h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .east-9dcf {
    padding: var(--space-md);
  }
  
  .primary-4263 {
    padding: var(--space-md);
  }
  
  .logo-center-3948 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.soft-389f,
.frame_slow_891b,
.status_fixed_5100,
.search_289c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown_6ad5 .paragraph_pressed_5ab3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.bright_d914 .paragraph_pressed_5ab3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.focus-west-14b5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.pressed-55e2 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.pagination-hot-d48f {
  margin-top: var(--space-xxl);
}

.video-middle-9249 {
  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);
}

.aside-medium-d14c {
  text-align: center;
}

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

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

.outer_8b60 .accordion-copper-9258 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.tabs-dim-7d40 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-a6ee {
  text-align: right;
}

.alert-a6ee .link_out_5d0b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.tall-bdc2 {
  background: #e8f5e9;
  color: #2e7d32;
}

.heading-fluid-72db {
  background: #e3f2fd;
  color: #1565c0;
}

.pattern-9eb0 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-tiny-89f2 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dropdown-d60b[aria-expanded="true"] .notification-tiny-89f2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.hot-03ae {
  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);
}

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

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

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

.breadcrumb_63ef,
.list-simple-5af1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.breadcrumb_63ef h4,
.list-simple-5af1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.breadcrumb_63ef ul,
.list-simple-5af1 ul {
  list-style: none;
  padding: 0;
}

.breadcrumb_63ef li,
.list-simple-5af1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.panel-fbba {
  font-style: italic;
}

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

.hero-new-9a80 {
  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;
}

.hero-new-9a80 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.hero-new-9a80 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

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

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

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

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

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

.tag-large-29b4 {
  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);
}

.tag-large-29b4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.item-iron-655a {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

.tag-large-29b4 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.notice-fa56 .text-cf8a {
  color: #4caf50;
  font-size: 0.875rem;
}

.glass-f7d0 {
  list-style: none;
  padding: 0;
}

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

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

.glass-f7d0 a:hover {
  color: white;
}

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

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

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

.badge_f943 a:hover {
  color: white;
}

.current-687a {
  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);
}

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

.list-45cd a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.carousel-026f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .current-687a {
    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;
  }
  
  .dynamic_7834 {
    font-size: 2rem;
  }
  
  .overlay-231e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .mask-064b,
  .white_1752 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .header_selected_7801,
  .dropdown_pro_d320,
  .link-b0a1,
  .container-fbd3,
  .top_8549,
  .dark-0d33,
  .under_c4ef,
  .carousel_small_ea8d {
    grid-template-columns: 1fr;
  }
  
  .popup_pressed_8b0b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .focus_09ae {
    padding: var(--space-lg) 0;
  }
  
  .carousel-stale-0236 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .carousel-stale-0236 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pink-c9c7 {
    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;
  }
  
  .popup_pressed_8b0b {
    grid-template-columns: 1fr;
  }
  
  .surface-east-2bbf,
  .image_83b7,
  .widget_warm_0bee {
    flex-direction: column;
    width: 100%;
  }
  
  .thumbnail-fa23,
  .new_f1c7,
  .surface-east-2bbf .pink-c9c7,
  .image_83b7 .pink-c9c7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dynamic_7834 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .overlay-231e {
    font-size: 1.375rem;
  }
  
  .short_bafc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .column_4e56,
  .outline-dark-eda0,
  .content-warm-3358,
  .article-b1b0,
  .current-a5e0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tooltip-b3c6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .rough-09af {
    gap: var(--space-xs);
  }
  
  .advanced_c346 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .static_3ba7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .outer_8b60 {
    width: 150px;
    height: 150px;
  }
  
  .card_slow_060e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .description_hot_eb8c,
  .article-70bd,
  .surface-east-2bbf,
  .hero-new-9a80,
  .right-36a5,
  .alert-971b,
  .dirty-0f62 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .focus_09ae {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.summary_complex_adc3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 95eb */
.phantom-card-k8 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
