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

.up_7947:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.accordion-bronze-fd67):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. */
.accordion-bronze-fd67,
header,
.gold_5209,
.center_56fb,
.article_587c,
.paragraph-bfe1,
.summary_hard_b171,
.current-fc09,
.content_white_b542 {
  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
   ============================================ */
.accordion-bronze-fd67 {
  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);
}

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

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

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

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

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

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

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

.column_narrow_4684 {
  flex: 1;
}

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

.shadow-paper-02d7 {
  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-paper-02d7:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.shadow-paper-02d7.tertiary_55b9 {
  background: var(--color-primary);
  color: white;
}

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

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

.plasma-8e97 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.red-416b {
  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;
}

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

.red-416b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hard-82f8[aria-expanded="true"] .slider-c4bc:nth-child(2) {
  opacity: 0;
}

.hard-82f8[aria-expanded="true"] .slider-c4bc:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .column_narrow_4684::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .column_narrow_4684.pagination-narrow-d33b {
    display: block;
    right: 0;
  }
  
  .widget-soft-16ce {
    flex-direction: column;
    gap: 0;
  }
  
  .shadow-paper-02d7 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .column_narrow_4684::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;
  }
  
  .column_narrow_4684.pagination-narrow-d33b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .column_narrow_4684 {
    display: none;
  }
  
  .hard-82f8 {
    display: flex;
  }
  
  .card-7289 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .red-416b,
  .secondary-f9b1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pink_f664 {
    position: relative;
  }
  
  .button_535c {
    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;
  }
  
  .plasma-8e97[aria-expanded="true"] + .button_535c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .search_1415 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .simple_5511 {
    gap: 8px;
  }
  
  .red-416b {
    display: none;
  }
  
  .secondary-f9b1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .paragraph_bright_6bd9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.notice-brown-1479 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-brown-1479 svg {
  flex-shrink: 0;
}

.notice-brown-1479 a {
  color: var(--color-primary);
  text-decoration: none;
}

.notice-brown-1479 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.short-33f8 a {
  color: var(--color-primary);
  text-decoration: none;
}

.short-33f8 a:hover {
  text-decoration: underline;
}

.mask-mini-68fc {
  color: var(--color-text-lighter);
}

.aside-old-50da {
  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) {
  .aside-old-50da {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .aside-old-50da {
    font-size: 1.5rem;
  }
}

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

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

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

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

.over-9d2f {
  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;
}

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

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

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

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

.layout-active-3353 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-ee70 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .full-e105 {
    grid-template-columns: 1fr;
  }
  
  .aside-old-50da {
    font-size: 1.75rem;
  }
  
  .layout-active-3353 {
    order: -1;
    max-width: 100%;
  }
  
  .breadcrumb-ee70 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .aside-old-50da {
    font-size: 1.5rem;
  }
  
  .cool_2f46 {
    font-size: 1rem;
  }
  
  .short-33f8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .breadcrumb-ee70 {
    max-width: 250px;
  }
}

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

.secondary-1aee {
  background: var(--color-primary);
  color: white;
}

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

.picture-hard-1bdc {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.picture-hard-1bdc:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-brown-adf3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.link-brown-adf3 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);
}

.link-brown-adf3 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;
}

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

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

.backdrop-1a6e {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_2aab 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) {
  .modal-lower-e1f1 {
    grid-template-columns: 1fr;
  }
  
  .popup_bottom_3a89 {
    font-size: 1.75rem;
  }
  
  .title_6c0c {
    max-width: 100%;
  }
}

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

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

.photo-last-b299 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.top-124a {
  flex-shrink: 0;
}

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

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

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

.element_basic_6927,
.highlight-b276,
.tag_f060 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.element_basic_6927 thead,
.highlight-b276 thead {
  background: var(--color-primary);
  color: white;
}

.element_basic_6927 th,
.element_basic_6927 td,
.highlight-b276 th,
.highlight-b276 td,
.tag_f060 th,
.tag_f060 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .element_basic_6927 th,
  .element_basic_6927 td,
  .highlight-b276 th,
  .highlight-b276 td,
  .tag_f060 th,
  .tag_f060 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .element_basic_6927,
  .highlight-b276,
  .tag_f060 {
    min-width: 600px;
  }
}

.element_basic_6927 th,
.highlight-b276 th,
.tag_f060 th {
  font-weight: 600;
}

.element_basic_6927 tbody tr:hover,
.highlight-b276 tbody tr:hover,
.tag_f060 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.column-mini-68ae {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.feature-wood-9c91 h4 {
  color: white;
}

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

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

.highlight-hovered-4a18:last-child {
  border-bottom: none;
}

.highlight-hovered-4a18 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.highlight-hovered-4a18 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

.copper-9c5a {
  font-weight: 600;
  color: white;
}

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

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

.status-narrow-64b5 {
  color: #4caf50;
}

.basic-943a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-easy-9ea3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

.feature-fresh-072b h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.up-7d71 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.modal-4643 .tooltip-fixed-3847 {
  width: 100%;
  background: white;
}

.label-5fb2 .tooltip-fixed-3847 {
  color: #667eea;
}

.full_486b .tooltip-fixed-3847 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .box_1558 {
    padding: var(--space-md);
  }
  
  .disabled-0481 {
    padding: var(--space-md);
  }
  
  .tabs_7fb6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.mask-dark-4e77 ol,
.mask-dark-4e77 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.mask-dark-4e77 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.title_steel_64a1,
.gradient_slow_6ba3,
.detail_312e,
.glass-7520 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.module-dim-1caf:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.dropdown_silver_3cd7 .tiny_9c8b {
  background: #e8f5e9;
  color: var(--color-success);
}

.logo_center_3a9a .tiny_9c8b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.status-mini-9add {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.footer-new-c1b1 {
  margin-top: var(--space-xxl);
}

.nav-purple-26cd {
  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);
}

.blue-4418 {
  text-align: center;
}

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

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

.caption_active_b9f3 .copper-9c5a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.column-218e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-0cbc {
  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;
}

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

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

.preview-fresh-92a5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.tooltip_hot_bc17 {
  text-align: right;
}

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

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

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

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

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

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

.input-5a74 {
  background: #e8f5e9;
  color: #2e7d32;
}

.active-bce4 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover-4345,
.item-over-358a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hover-4345 h4,
.item-over-358a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hover-4345 ul,
.item-over-358a ul {
  list-style: none;
  padding: 0;
}

.hover-4345 li,
.item-over-358a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.yellow-148a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.header-bc64 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.breadcrumb-center-f532 {
  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);
}

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

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

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

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

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

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

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

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

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

.row-purple-9e2f {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.row-purple-9e2f .container_narrow_c700 {
  color: #4caf50;
  font-size: 0.875rem;
}

.icon-current-6784 {
  list-style: none;
  padding: 0;
}

.icon-current-6784 li {
  margin-bottom: var(--space-xs);
}

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

.icon-current-6784 a:hover {
  color: white;
}

.filter-cdaf {
  list-style: none;
  padding: 0;
}

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

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

.filter-cdaf a:hover {
  color: white;
}

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

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

.media-fluid-b9e7 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .full-f1a5 {
    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;
  }
  
  .aside-old-50da {
    font-size: 2rem;
  }
  
  .popup_bottom_3a89 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .full-e105,
  .modal-lower-e1f1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sort_bronze_3958,
  .image_09b6,
  .north_1a4e,
  .row-7b05,
  .progress_silver_d95e,
  .plasma_7a82,
  .south-bd04,
  .form-c261 {
    grid-template-columns: 1fr;
  }
  
  .gradient_silver_885e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .summary_hard_b171 {
    padding: var(--space-lg) 0;
  }
  
  .link-brown-adf3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .link-brown-adf3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tooltip-fixed-3847 {
    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;
  }
  
  .gradient_silver_885e {
    grid-template-columns: 1fr;
  }
  
  .tertiary_current_2798,
  .title_5b9c,
  .action_ed9d {
    flex-direction: column;
    width: 100%;
  }
  
  .layout_down_ad65,
  .pro_f208,
  .tertiary_current_2798 .tooltip-fixed-3847,
  .title_5b9c .tooltip-fixed-3847 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .aside-old-50da {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .popup_bottom_3a89 {
    font-size: 1.375rem;
  }
  
  .dropdown_static_1832 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .carousel_fixed_6ae0,
  .mini_37aa,
  .soft_f7d2,
  .gallery-849a,
  .right-1173 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider-left-b4d9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dim-c5ad {
    gap: var(--space-xs);
  }
  
  .notice-brown-1479 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .solid-d31f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .caption_active_b9f3 {
    width: 150px;
    height: 150px;
  }
  
  .column_purple_d45d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .accordion-bronze-fd67,
  .gold_5209,
  .tertiary_current_2798,
  .black-3722,
  .current-fc09,
  .content_white_b542,
  .hard-82f8 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .summary_hard_b171 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: b520 */
.widget-item-f2 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
