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

.background_fbf6:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.pink_f445):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. */
.pink_f445,
header,
.module-smooth-3369,
.dynamic-bf36,
.cold_a244,
.link_1131,
.hovered-6034,
.dirty-8582,
.search_ce37 {
  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
   ============================================ */
.pink_f445 {
  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);
}

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

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

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

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

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

.mask-full-5745 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.hover_6d51 {
  flex: 1;
}

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

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

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

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

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

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

.fresh-7491 svg {
  transition: transform 0.2s ease;
}

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

.form-6865 {
  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_stale_e49a:hover .form-6865 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

/* Header Login Button */
.hidden-9c10 {
  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;
}

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

.hidden-9c10 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.basic_def0[aria-expanded="true"] .shadow-99d8:nth-child(2) {
  opacity: 0;
}

.basic_def0[aria-expanded="true"] .shadow-99d8:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .hover_6d51 {
    display: none;
  }
  
  .basic_def0 {
    display: flex;
  }
  
  .tooltip_ce93 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hidden-9c10,
  .banner_a9fa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .banner_stale_e49a {
    position: relative;
  }
  
  .form-6865 {
    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;
  }
  
  .fresh-7491[aria-expanded="true"] + .form-6865 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .content_north_5d3e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .grid_7468 {
    gap: 8px;
  }
  
  .hidden-9c10 {
    display: none;
  }
  
  .banner_a9fa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .mask-full-5745 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.next_5eb8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.element-stone-e1e5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.element-stone-e1e5 a:hover {
  text-decoration: underline;
}

.info-62df {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.wrapper-hard-6d4c {
  display: flex;
  gap: var(--space-sm);
}

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

.west-58cf {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.west-58cf strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.sidebar-top-08c7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.box-selected-accf {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.layout-purple-30be {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .slider_gold_e7ec {
    grid-template-columns: 1fr;
  }
  
  .panel-9579 {
    font-size: 1.75rem;
  }
  
  .media_a2ef {
    order: -1;
    max-width: 100%;
  }
  
  .box-selected-accf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .panel-9579 {
    font-size: 1.5rem;
  }
  
  .out-1246 {
    font-size: 1rem;
  }
  
  .element-stone-e1e5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .box-selected-accf {
    max-width: 250px;
  }
}

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

.module-south-ae3a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-2fb6 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.input-2fb6 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) {
  .slider_center_9a85 {
    grid-template-columns: 1fr;
  }
  
  .tooltip_abda {
    font-size: 1.75rem;
  }
  
  .secondary_cold_e061 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.wide-d577 {
  flex-shrink: 0;
}

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

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

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

.avatar-bottom-dfaf,
.chip-gold-9ff3,
.list-e2ce {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.avatar-bottom-dfaf thead,
.chip-gold-9ff3 thead {
  background: var(--color-primary);
  color: white;
}

.avatar-bottom-dfaf th,
.avatar-bottom-dfaf td,
.chip-gold-9ff3 th,
.chip-gold-9ff3 td,
.list-e2ce th,
.list-e2ce td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .avatar-bottom-dfaf th,
  .avatar-bottom-dfaf td,
  .chip-gold-9ff3 th,
  .chip-gold-9ff3 td,
  .list-e2ce th,
  .list-e2ce td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .avatar-bottom-dfaf,
  .chip-gold-9ff3,
  .list-e2ce {
    min-width: 600px;
  }
}

.avatar-bottom-dfaf th,
.chip-gold-9ff3 th,
.list-e2ce th {
  font-weight: 600;
}

.avatar-bottom-dfaf tbody tr:hover,
.chip-gold-9ff3 tbody tr:hover,
.list-e2ce tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.logo-224c h4 {
  color: white;
}

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

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

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

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

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

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

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

.next-b3a6:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.down_5bb3 {
  color: #4caf50;
}

.upper-61f5 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rough-4725 .shadow_center_608c {
  width: 100%;
  background: white;
}

.badge_715a .shadow_center_608c {
  color: #667eea;
}

.frame-bright-e642 .shadow_center_608c {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.outline-yellow-99d9 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.mask-white-4fe7 {
  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);
}

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

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

@media (max-width: 768px) {
  .shadow_last_cc1d {
    padding: var(--space-md);
  }
  
  .table_dc2f {
    padding: var(--space-md);
  }
  
  .active_north_ba67 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.main-in-2a9d,
.focus_focused_8637,
.video-3fbe,
.small_7947 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled_warm_9e56 .banner_yellow_fd9d {
  background: #e8f5e9;
  color: var(--color-success);
}

.soft_235b .banner_yellow_fd9d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.in_01ba {
  text-align: center;
}

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

.avatar-dirty-90dc {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.pagination-f080 .layout_2a04 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.cool-026d {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.message-wide-1c11 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.action_3e6d {
  text-align: right;
}

.action_3e6d .video-copper-793d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.motion-8c24 {
  background: #e8f5e9;
  color: #2e7d32;
}

.avatar-a320 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.down-91b4 {
  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);
}

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

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

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

.north-071f strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.short-1250[aria-expanded="true"] .over_c772 {
  transform: rotate(180deg);
}

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

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

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

.layout-hot-a344 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.focused-5a1a,
.accent_white_4222 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.focused-5a1a h4,
.accent_white_4222 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.focused-5a1a ul,
.accent_white_4222 ul {
  list-style: none;
  padding: 0;
}

.focused-5a1a li,
.accent_white_4222 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-8037 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old_e4b7 .wrapper-hard-6d4c {
  color: #4caf50;
  font-size: 0.875rem;
}

.fresh-6e6d {
  list-style: none;
  padding: 0;
}

.fresh-6e6d li {
  margin-bottom: var(--space-xs);
}

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

.fresh-6e6d a:hover {
  color: white;
}

.accent-9747 {
  list-style: none;
  padding: 0;
}

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

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

.accent-9747 a:hover {
  color: white;
}

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

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

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

.link-steel-b92b {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .out-f745 {
    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;
  }
  
  .panel-9579 {
    font-size: 2rem;
  }
  
  .tooltip_abda {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .slider_gold_e7ec,
  .slider_center_9a85 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .description_1cc6,
  .description-9abe,
  .notice_3191,
  .search-solid-8eb5,
  .gradient_pressed_e8a6,
  .pattern_42a6,
  .element_huge_5d49,
  .blue-4156 {
    grid-template-columns: 1fr;
  }
  
  .upper-ff48 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hovered-6034 {
    padding: var(--space-lg) 0;
  }
  
  .iron_a67d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .iron_a67d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .shadow_center_608c {
    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;
  }
  
  .upper-ff48 {
    grid-template-columns: 1fr;
  }
  
  .sidebar-top-08c7,
  .alert_left_a94d,
  .table-red-0d96 {
    flex-direction: column;
    width: 100%;
  }
  
  .form_ae9c,
  .soft_c512,
  .sidebar-top-08c7 .shadow_center_608c,
  .alert_left_a94d .shadow_center_608c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .panel-9579 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tooltip_abda {
    font-size: 1.375rem;
  }
  
  .message_2eaa {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .widget-paper-cd38,
  .row-outer-0111,
  .border-liquid-a1e6,
  .link_5c9c,
  .preview-e38b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .list-1039 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .status-4069 {
    gap: var(--space-xs);
  }
  
  .next_5eb8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .summary_9ce2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pagination-f080 {
    width: 150px;
    height: 150px;
  }
  
  .avatar-dirty-90dc {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pink_f445,
  .module-smooth-3369,
  .sidebar-top-08c7,
  .steel_2efe,
  .dirty-8582,
  .search_ce37,
  .basic_def0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hovered-6034 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9093 */
.ghost-box-m5 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
