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

.highlight_mini_d122:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.center_28f1):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. */
.center_28f1,
header,
.hidden_dark_c01b,
.image-3600,
.shade_lower_e3b6,
.avatar-475a,
.shade-f44c,
.frame-938c,
.east-f17d {
  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
   ============================================ */
.center_28f1 {
  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);
}

.progress-21ee {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.pattern-slow-e3e5 {
  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;
}

.stone_ddb7 {
  flex: 1;
}

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

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

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

.message-fae9.main_hard_c378 {
  background: var(--color-primary);
  color: white;
}

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

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

.content-ecc2 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.texture-d409 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.thick_391b[aria-expanded="true"] .content-c64c:nth-child(2) {
  opacity: 0;
}

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

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

  .stone_ddb7::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .stone_ddb7.sidebar_new_cd1f {
    display: block;
    right: 0;
  }
  
  .backdrop-plasma-6a7c {
    flex-direction: column;
    gap: 0;
  }
  
  .message-fae9 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .stone_ddb7::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;
  }
  
  .stone_ddb7.sidebar_new_cd1f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .stone_ddb7 {
    display: none;
  }
  
  .thick_391b {
    display: flex;
  }
  
  .pattern-slow-e3e5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .texture-d409,
  .modal_cda9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .mini_f81a {
    position: relative;
  }
  
  .aside_d225 {
    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;
  }
  
  .content-ecc2[aria-expanded="true"] + .aside_d225 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .aside-thick-eb9c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .box_6797 {
    gap: 8px;
  }
  
  .texture-d409 {
    display: none;
  }
  
  .modal_cda9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .list_simple_1ed3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.dropdown-4cf9 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-4cf9 svg {
  flex-shrink: 0;
}

.dropdown-4cf9 a {
  color: var(--color-primary);
  text-decoration: none;
}

.dropdown-4cf9 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-right-d963 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .border-motion-a501 {
    grid-template-columns: 1fr;
  }
  
  .full_3a92 {
    font-size: 1.75rem;
  }
  
  .detail-f8c2 {
    order: -1;
    max-width: 100%;
  }
  
  .box_a7a5 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .full_3a92 {
    font-size: 1.5rem;
  }
  
  .hard-4864 {
    font-size: 1rem;
  }
  
  .tabs_blue_9d71 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .box_a7a5 {
    max-width: 250px;
  }
}

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

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

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

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

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

.label-liquid-0b90 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.label-liquid-0b90:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-green-22e5 {
  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);
}

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

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

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

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

.first-11bd img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.first-11bd 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);
}

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

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

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

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

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

.first-11bd strong {
  font-weight: 600;
  color: var(--color-text);
}

.first-11bd a {
  color: var(--color-primary);
  text-decoration: underline;
}

.first-11bd a:hover {
  color: var(--color-primary-dark);
}

.thumbnail-fresh-3d14 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.thumbnail-fresh-3d14 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) {
  .tag_lite_0579 {
    grid-template-columns: 1fr;
  }
  
  .menu-green-22e5 {
    font-size: 1.75rem;
  }
  
  .first-11bd {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .menu-green-22e5 {
    font-size: 1.5rem;
  }
  
  .first-11bd h3 {
    font-size: 1.375rem;
  }
  
  .first-11bd h4 {
    font-size: 1.125rem;
  }
}

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

.overlay-south-c054 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.left_6629 {
  flex-shrink: 0;
}

.caption-warm-0b30 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

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

.bright_f588 thead,
.gradient_hot_2859 thead {
  background: var(--color-primary);
  color: white;
}

.bright_f588 th,
.bright_f588 td,
.gradient_hot_2859 th,
.gradient_hot_2859 td,
.box-aec5 th,
.box-aec5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bright_f588 th,
  .bright_f588 td,
  .gradient_hot_2859 th,
  .gradient_hot_2859 td,
  .box-aec5 th,
  .box-aec5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .bright_f588,
  .gradient_hot_2859,
  .box-aec5 {
    min-width: 600px;
  }
}

.bright_f588 th,
.gradient_hot_2859 th,
.box-aec5 th {
  font-weight: 600;
}

.bright_f588 tbody tr:hover,
.gradient_hot_2859 tbody tr:hover,
.box-aec5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.search_left_3198 h4 {
  color: white;
}

.list-advanced-0a0e {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.row-iron-acb5 {
  font-weight: 600;
  color: white;
}

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

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

.section-inner-64a9 {
  color: #4caf50;
}

.banner_89b2 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.status-left-6b41:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.status-left-6b41 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.green_3626 .cold-da03 {
  width: 100%;
  background: white;
}

.focus-e72b .cold-da03 {
  color: #667eea;
}

.dark-224c .cold-da03 {
  color: #f5576c;
}

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

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

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

.wrapper-orange-9e14 {
  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);
}

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

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

@media (max-width: 768px) {
  .label_8707 {
    padding: var(--space-md);
  }
  
  .widget-4501 {
    padding: var(--space-md);
  }
  
  .border_bc3f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.picture-paper-f0ef,
.notification_7961,
.narrow_8a26,
.breadcrumb-outer-47c1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.gradient-stale-dd1b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.summary-0c88 {
  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);
}

.overlay_action_e4b2 .summary-0c88 {
  background: #e8f5e9;
  color: var(--color-success);
}

.glass-b73c .summary-0c88 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-wide-ccfc {
  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);
}

.table-fixed-d9a5 {
  text-align: center;
}

.chip-black-3185 {
  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);
}

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

.chip-black-3185 .row-iron-acb5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.shadow-2a4f {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.north-c5fe {
  text-align: right;
}

.north-c5fe .bottom-38f9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.disabled-b4dd {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.sort-hard-b22b {
  background: #fff3e0;
  color: #e65100;
}

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

.overlay-focused-3b90 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.title-purple-963c {
  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);
}

.title-purple-963c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column-warm-a4b3,
.icon_medium_a358 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.column-warm-a4b3 h4,
.icon_medium_a358 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.column-warm-a4b3 ul,
.icon_medium_a358 ul {
  list-style: none;
  padding: 0;
}

.column-warm-a4b3 li,
.icon_medium_a358 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.avatar-east-8570 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.aside_3bc2 {
  font-style: italic;
}

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

.secondary-390b {
  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;
}

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

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

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

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

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

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

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

.button-fixed-de37 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.full_5db2 .filter-1436 {
  color: #4caf50;
  font-size: 0.875rem;
}

.menu-fluid-696d {
  list-style: none;
  padding: 0;
}

.menu-fluid-696d li {
  margin-bottom: var(--space-xs);
}

.menu-fluid-696d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.menu-fluid-696d a:hover {
  color: white;
}

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

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

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

.wide_42b6 a:hover {
  color: white;
}

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

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

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

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

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

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

.steel-9b15:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .full-b3b0 {
    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;
  }
  
  .full_3a92 {
    font-size: 2rem;
  }
  
  .menu-green-22e5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .border-motion-a501,
  .tag_lite_0579 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .modal_b77c,
  .item_steel_0669,
  .hover_easy_83c4,
  .pink_9aa7,
  .component-paper-a062,
  .under-6f46,
  .tertiary_bronze_d870,
  .component-730b {
    grid-template-columns: 1fr;
  }
  
  .carousel_in_2ee9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .shade-f44c {
    padding: var(--space-lg) 0;
  }
  
  .icon_6e8b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .icon_6e8b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cold-da03 {
    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;
  }
  
  .carousel_in_2ee9 {
    grid-template-columns: 1fr;
  }
  
  .search-right-d963,
  .tabs-south-ecfd,
  .sidebar_0e14 {
    flex-direction: column;
    width: 100%;
  }
  
  .element_lite_c2da,
  .overlay-c6d5,
  .search-right-d963 .cold-da03,
  .tabs-south-ecfd .cold-da03 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .full_3a92 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .menu-green-22e5 {
    font-size: 1.375rem;
  }
  
  .huge-8015 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .banner-177c,
  .status-left-6b41,
  .item_05b5,
  .fixed_7100,
  .gradient_bd64 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .bottom-4521 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .slider_462a {
    gap: var(--space-xs);
  }
  
  .dropdown-4cf9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .button_364d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .chip-black-3185 {
    width: 150px;
    height: 150px;
  }
  
  .mask_6233 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .center_28f1,
  .hidden_dark_c01b,
  .search-right-d963,
  .secondary-390b,
  .frame-938c,
  .east-f17d,
  .thick_391b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .shade-f44c {
    page-break-inside: avoid;
  }
}

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

/* css-noise: fcb3 */
.promo-block-u6 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
