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

.current-ee2e:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.fresh_a8ab):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. */
.fresh_a8ab,
header,
.bronze_aac8,
.item-6869,
.menu_focused_eadb,
.panel_faeb,
.wrapper-under-35b8,
.status-smooth-fea5,
.tooltip_5282 {
  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
   ============================================ */
.fresh_a8ab {
  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);
}

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

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

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

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

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

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

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

.search-black-028d {
  flex: 1;
}

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

.preview-5c23 {
  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);
}

.preview-5c23:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.preview-5c23.center-06c7 {
  background: var(--color-primary);
  color: white;
}

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

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

.active_3167 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.carousel-660e {
  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;
}

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

.carousel-660e svg {
  flex-shrink: 0;
}

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

.form-fluid-ab3c: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);
}

.form-fluid-ab3c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.icon-ecc9[aria-expanded="true"] .label_warm_c830:nth-child(2) {
  opacity: 0;
}

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

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

  .search-black-028d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .search-black-028d.border_selected_8c07 {
    display: block;
    right: 0;
  }
  
  .hot_0716 {
    flex-direction: column;
    gap: 0;
  }
  
  .preview-5c23 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .search-black-028d::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;
  }
  
  .search-black-028d.border_selected_8c07::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .search-black-028d {
    display: none;
  }
  
  .icon-ecc9 {
    display: flex;
  }
  
  .breadcrumb_ddbc {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .carousel-660e,
  .form-fluid-ab3c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .banner_red_01bf {
    position: relative;
  }
  
  .badge_middle_551f {
    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;
  }
  
  .active_3167[aria-expanded="true"] + .badge_middle_551f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .secondary_soft_62fa {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .picture-73b5 {
    gap: 8px;
  }
  
  .carousel-660e {
    display: none;
  }
  
  .form-fluid-ab3c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .picture_22f2 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.under_669c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-d1ac {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

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

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

.gradient-static-b0d8 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.left-5d6e {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-wide-c07a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .form_95b2 {
    grid-template-columns: 1fr;
  }
  
  .gradient_brown_9abf {
    font-size: 1.75rem;
  }
  
  .left-5d6e {
    order: -1;
    max-width: 100%;
  }
  
  .grid-wide-c07a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .gradient_brown_9abf {
    font-size: 1.5rem;
  }
  
  .gradient_7ba4 {
    font-size: 1rem;
  }
  
  .info_362b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .grid-wide-c07a {
    max-width: 250px;
  }
}

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

.alert-55df {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.tall-538b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

.item-current-491a {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.image-55eb {
  list-style: none;
  counter-reset: toc-counter;
}

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

.image-55eb 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);
}

.image-55eb 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.wrapper-under-35b8 {
  padding: var(--space-xxl) 0;
}

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

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

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

.tag-green-a62e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-1fa4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.paragraph-1fa4 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) {
  .dirty_a1c8 {
    grid-template-columns: 1fr;
  }
  
  .tag-green-a62e {
    font-size: 1.75rem;
  }
  
  .feature_full_acc2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tag-green-a62e {
    font-size: 1.5rem;
  }
  
  .feature_full_acc2 h3 {
    font-size: 1.375rem;
  }
  
  .feature_full_acc2 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.module_606c {
  flex-shrink: 0;
}

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

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

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

.huge_c276,
.list-0a1f,
.carousel_stale_c4ea {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.huge_c276 thead,
.list-0a1f thead {
  background: var(--color-primary);
  color: white;
}

.huge_c276 th,
.huge_c276 td,
.list-0a1f th,
.list-0a1f td,
.carousel_stale_c4ea th,
.carousel_stale_c4ea td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .huge_c276 th,
  .huge_c276 td,
  .list-0a1f th,
  .list-0a1f td,
  .carousel_stale_c4ea th,
  .carousel_stale_c4ea td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .huge_c276,
  .list-0a1f,
  .carousel_stale_c4ea {
    min-width: 600px;
  }
}

.huge_c276 th,
.list-0a1f th,
.carousel_stale_c4ea th {
  font-weight: 600;
}

.huge_c276 tbody tr:hover,
.list-0a1f tbody tr:hover,
.carousel_stale_c4ea tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.secondary-fixed-a750 h4 {
  color: white;
}

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

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

.video-simple-dd24:last-child {
  border-bottom: none;
}

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

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

.hero-south-32cc {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.search-0310:hover {
  text-decoration: underline;
}

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

.column_cc76 {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

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

.narrow-ae24 {
  list-style: none;
  padding: 0;
}

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

.caption-8e29 {
  color: #4caf50;
}

.input_d37c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper-a98e .frame_over_3f65 {
  width: 100%;
  background: white;
}

.grid-9abf .frame_over_3f65 {
  color: #667eea;
}

.content-pro-6189 .frame_over_3f65 {
  color: #f5576c;
}

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

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

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

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

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

.preview-simple-4e43 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .fast_58fe {
    padding: var(--space-md);
  }
  
  .preview-simple-4e43 {
    padding: var(--space-md);
  }
  
  .component-b69b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.red_80d6,
.disabled_active_096e,
.pro-6255,
.content_center_275d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.blue-9cb6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.video_738d .blue-2780 {
  background: #e8f5e9;
  color: var(--color-success);
}

.warm_d4a3 .blue-2780 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-71cd {
  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);
}

.tall_428b {
  text-align: center;
}

.thick_8ce8 {
  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_last_4e65 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

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

.shade-pink-353f {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.primary-current-b495 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.section-8d51 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.banner-dark-3a21 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

.footer-in-2aaa {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.basic_f9e5 {
  text-align: right;
}

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

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

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

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

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

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

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

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

.surface-032c {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.bottom-0c66 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.cold-127e {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.easy_4a67[aria-expanded="true"] .cold-127e {
  transform: rotate(180deg);
}

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

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

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

.description-hard-e618 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.badge-fixed-0d35 {
  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);
}

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

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

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

.input-middle-5402,
.content_basic_4772 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.input-middle-5402 h4,
.content_basic_4772 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.input-middle-5402 ul,
.content_basic_4772 ul {
  list-style: none;
  padding: 0;
}

.input-middle-5402 li,
.content_basic_4772 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.photo-3427 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark_a21b .article_9d90 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.carousel_up_d3f9 a:hover {
  color: white;
}

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

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

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

.link_soft_3427 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .smooth_0ce2 {
    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;
  }
  
  .gradient_brown_9abf {
    font-size: 2rem;
  }
  
  .tag-green-a62e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .form_95b2,
  .dirty_a1c8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .notice_current_49ec,
  .box_inner_d90b,
  .primary_7b5f,
  .chip_9656,
  .alert_9c76,
  .south-6d85,
  .mini_491b,
  .short_fc4c {
    grid-template-columns: 1fr;
  }
  
  .disabled_a519 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .wrapper-under-35b8 {
    padding: var(--space-lg) 0;
  }
  
  .image-55eb li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .image-55eb li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .frame_over_3f65 {
    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;
  }
  
  .disabled_a519 {
    grid-template-columns: 1fr;
  }
  
  .gradient-static-b0d8,
  .thumbnail-soft-c1d3,
  .menu_287a {
    flex-direction: column;
    width: 100%;
  }
  
  .tall-538b,
  .link_af98,
  .gradient-static-b0d8 .frame_over_3f65,
  .thumbnail-soft-c1d3 .frame_over_3f65 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .gradient_brown_9abf {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tag-green-a62e {
    font-size: 1.375rem;
  }
  
  .description-pink-e540 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .message-0b71,
  .south-3d53,
  .static-b1ca,
  .shadow_aece,
  .wood-f0f5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tiny-a1e2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .outline_mini_af8f {
    gap: var(--space-xs);
  }
  
  .under_669c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column_cc76 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .thick_8ce8 {
    width: 150px;
    height: 150px;
  }
  
  .widget_last_4e65 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fresh_a8ab,
  .bronze_aac8,
  .gradient-static-b0d8,
  .grid_basic_e93b,
  .status-smooth-fea5,
  .tooltip_5282,
  .icon-ecc9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .wrapper-under-35b8 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: fd81 */
.phantom-card-d8 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
