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

.dynamic_c477:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.chip_warm_9ed2):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. */
.chip_warm_9ed2,
header,
.preview_2621,
.short_11da,
.nav-ff3e,
.row-c267,
.tabs_full_ac4c,
.thumbnail-advanced-242d,
.search-pressed-75eb {
  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
   ============================================ */
.chip_warm_9ed2 {
  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);
}

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

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

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

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

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

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

.liquid-6aeb {
  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;
}

.status-93de {
  flex: 1;
}

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

.sort-0e59 {
  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);
}

.sort-0e59:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.sort-0e59.wrapper_pressed_8034 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.focused-e88f {
  position: relative;
}

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

.paper-07a6 svg {
  transition: transform 0.2s ease;
}

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

.popup-mini-e05a {
  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;
}

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

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

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

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

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

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

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

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

.pagination-3b82 svg {
  flex-shrink: 0;
}

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

.layout-basic-c7b9: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);
}

.layout-basic-c7b9 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.gallery-51f5[aria-expanded="true"] .item-active-d32c:nth-child(2) {
  opacity: 0;
}

.gallery-51f5[aria-expanded="true"] .item-active-d32c:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .status-93de {
    display: none;
  }
  
  .gallery-51f5 {
    display: flex;
  }
  
  .liquid-6aeb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pagination-3b82,
  .layout-basic-c7b9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .focused-e88f {
    position: relative;
  }
  
  .popup-mini-e05a {
    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;
  }
  
  .paper-07a6[aria-expanded="true"] + .popup-mini-e05a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .alert-0371 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .paragraph-415a {
    gap: 8px;
  }
  
  .pagination-3b82 {
    display: none;
  }
  
  .layout-basic-c7b9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tooltip_slow_f8b1 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.preview_south_c3b1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.action-c4ef a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.image-complex-1fc6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.outer-c9ac {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .alert-south-e178 {
    grid-template-columns: 1fr;
  }
  
  .focused_8a2e {
    font-size: 1.75rem;
  }
  
  .component_c4e0 {
    order: -1;
    max-width: 100%;
  }
  
  .outer-c9ac {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .focused_8a2e {
    font-size: 1.5rem;
  }
  
  .inner-9e86 {
    font-size: 1rem;
  }
  
  .action-c4ef {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .outer-c9ac {
    max-width: 250px;
  }
}

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

.item-in-1afb {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-clean-162f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east_2217 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) {
  .logo_simple_cb5c {
    grid-template-columns: 1fr;
  }
  
  .disabled_06c4 {
    font-size: 1.75rem;
  }
  
  .cool-5011 {
    max-width: 100%;
  }
}

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

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

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

.last-9fd0 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.detail-7ed0 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.green-ce39 {
  flex-shrink: 0;
}

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

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

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

.wrapper-b1be,
.summary_9dad,
.fixed_c13d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.wrapper-b1be thead,
.summary_9dad thead {
  background: var(--color-primary);
  color: white;
}

.wrapper-b1be th,
.wrapper-b1be td,
.summary_9dad th,
.summary_9dad td,
.fixed_c13d th,
.fixed_c13d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .wrapper-b1be th,
  .wrapper-b1be td,
  .summary_9dad th,
  .summary_9dad td,
  .fixed_c13d th,
  .fixed_c13d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .wrapper-b1be,
  .summary_9dad,
  .fixed_c13d {
    min-width: 600px;
  }
}

.wrapper-b1be th,
.summary_9dad th,
.fixed_c13d th {
  font-weight: 600;
}

.wrapper-b1be tbody tr:hover,
.summary_9dad tbody tr:hover,
.fixed_c13d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.accordion-6abc h4 {
  color: white;
}

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

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

.pagination-f7a2:last-child {
  border-bottom: none;
}

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

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

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

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

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

.header-lower-86f9 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.notice-bab2 {
  font-weight: 600;
  color: white;
}

.steel-80b5 {
  list-style: none;
  padding: 0;
}

.steel-80b5 li {
  padding: var(--space-xs) 0;
}

.header_lite_5442 {
  color: #4caf50;
}

.under_a9b8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-ae48 .paragraph_babf {
  width: 100%;
  background: white;
}

.easy-a122 .paragraph_babf {
  color: #667eea;
}

.mask_4244 .paragraph_babf {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .rough-1350 {
    padding: var(--space-md);
  }
  
  .dirty_bf41 {
    padding: var(--space-md);
  }
  
  .pagination_4158 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tertiary_lite_086e,
.header_mini_6d57,
.easy-9849,
.light-3b3c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.grid-254c:hover {
  background: var(--color-primary-dark);
}

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

.hover-clean-617b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.mask_d54b .notice_37eb {
  background: #e8f5e9;
  color: var(--color-success);
}

.south_7033 .notice_37eb {
  background: #fff3e0;
  color: var(--color-warning);
}

.alert-fixed-6fe8 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.alert-fixed-6fe8 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.frame-inner-6282 {
  text-align: center;
}

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

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

.breadcrumb_lite_4a2d .notice-bab2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.label-wide-42bd {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-7792 {
  text-align: right;
}

.box-7792 .column_2d98 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.dark_d439 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.card-dynamic-fce7 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.cool-7831[aria-expanded="true"] .focused_12dd {
  transform: rotate(180deg);
}

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

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

.picture-dynamic-7e80 ul,
.picture-dynamic-7e80 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.picture-dynamic-7e80 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper_pro_c054 h4,
.west_ef48 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.wrapper_pro_c054 ul,
.west_ef48 ul {
  list-style: none;
  padding: 0;
}

.wrapper_pro_c054 li,
.west_ef48 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.image-purple-476f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.image-purple-476f ul {
  list-style: none;
  padding: 0;
}

.image-purple-476f li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.title-959c {
  font-style: italic;
}

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

.shade-6c1e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-9bc2 .heading-a91f {
  color: #4caf50;
  font-size: 0.875rem;
}

.accordion-181e {
  list-style: none;
  padding: 0;
}

.accordion-181e li {
  margin-bottom: var(--space-xs);
}

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

.accordion-181e a:hover {
  color: white;
}

.clean-8abe {
  list-style: none;
  padding: 0;
}

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

.clean-8abe a {
  color: #b0b0b0;
  text-decoration: none;
}

.clean-8abe a:hover {
  color: white;
}

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

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

.picture-44d2 a {
  color: #4caf50;
  text-decoration: none;
}

.overlay-active-a97b {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.frame-0fac:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gradient-d257 {
    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;
  }
  
  .focused_8a2e {
    font-size: 2rem;
  }
  
  .disabled_06c4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .alert-south-e178,
  .logo_simple_cb5c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .summary_f5f8,
  .overlay_slow_d8e2,
  .warm_83ac,
  .pagination-8ec5,
  .media_fluid_455b,
  .label_c344,
  .pink_d0d7,
  .shade_4b34 {
    grid-template-columns: 1fr;
  }
  
  .out_5542 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tabs_full_ac4c {
    padding: var(--space-lg) 0;
  }
  
  .overlay_6db9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .overlay_6db9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paragraph_babf {
    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;
  }
  
  .out_5542 {
    grid-template-columns: 1fr;
  }
  
  .image-complex-1fc6,
  .search_in_f6ba,
  .layout_3cfb {
    flex-direction: column;
    width: 100%;
  }
  
  .card_advanced_6733,
  .message_e991,
  .image-complex-1fc6 .paragraph_babf,
  .search_in_f6ba .paragraph_babf {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .focused_8a2e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .disabled_06c4 {
    font-size: 1.375rem;
  }
  
  .detail-next-b4a6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .text-15bf,
  .orange-b47d,
  .smooth-8d5f,
  .disabled-6195,
  .dynamic_f915 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hero_6bdd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .icon-next-6d56 {
    gap: var(--space-xs);
  }
  
  .preview_south_c3b1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .carousel_glass_7b6a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .breadcrumb_lite_4a2d {
    width: 150px;
    height: 150px;
  }
  
  .widget_e990 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .chip_warm_9ed2,
  .preview_2621,
  .image-complex-1fc6,
  .shade-6c1e,
  .thumbnail-advanced-242d,
  .search-pressed-75eb,
  .gallery-51f5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tabs_full_ac4c {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 51b4 */
.shadow-element-w9 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.3;
}
