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

.notice_80f8:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.fixed-1834):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. */
.fixed-1834,
header,
.pro-cee5,
.nav-7d29,
.wide-fa84,
.last-16d9,
.picture-cold-b83e,
.solid-c374,
.stale_1911 {
  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
   ============================================ */
.fixed-1834 {
  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);
}

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

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

/* Scrolled state */
.fixed-1834.hot-00c2 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.center-346c {
  flex: 1;
}

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

.down-1ab0 {
  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);
}

.down-1ab0:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.down-1ab0.wrapper_ed4e {
  background: var(--color-primary);
  color: white;
}

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

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

.complex-cd17 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.frame-right-5260 {
  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;
}

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

.frame-right-5260 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hover-stone-511d[aria-expanded="true"] .aside_inner_bcbc:nth-child(2) {
  opacity: 0;
}

.hover-stone-511d[aria-expanded="true"] .aside_inner_bcbc:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .center-346c::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .center-346c.alert-large-2b09 {
    display: block;
    right: 0;
  }
  
  .gradient_c9f1 {
    flex-direction: column;
    gap: 0;
  }
  
  .down-1ab0 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .center-346c::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;
  }
  
  .center-346c.alert-large-2b09::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .center-346c {
    display: none;
  }
  
  .hover-stone-511d {
    display: flex;
  }
  
  .top_f205 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .frame-right-5260,
  .highlight_out_d173 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .selected_55ac {
    position: relative;
  }
  
  .frame_dynamic_1074 {
    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;
  }
  
  .complex-cd17[aria-expanded="true"] + .frame_dynamic_1074 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .inner-2e95 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .main_ab26 {
    gap: 8px;
  }
  
  .frame-right-5260 {
    display: none;
  }
  
  .highlight_out_d173 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tabs_0200 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.sort-middle-6fb6 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sort-middle-6fb6 svg {
  flex-shrink: 0;
}

.sort-middle-6fb6 a {
  color: var(--color-primary);
  text-decoration: none;
}

.sort-middle-6fb6 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.thick-0d28 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.paragraph-dynamic-9e21 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hero_71d2 {
    grid-template-columns: 1fr;
  }
  
  .popup-plasma-d0d0 {
    font-size: 1.75rem;
  }
  
  .paragraph-dynamic-9e21 {
    order: -1;
    max-width: 100%;
  }
  
  .mask_wide_882f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .popup-plasma-d0d0 {
    font-size: 1.5rem;
  }
  
  .hover-c1e0 {
    font-size: 1rem;
  }
  
  .hover_9b09 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask_wide_882f {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.advanced-1fe6 {
  background: var(--color-bg-section);
}

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

.hidden_56bb {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.tag-8d17 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_e5de 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) {
  .notification-pressed-f411 {
    grid-template-columns: 1fr;
  }
  
  .tag-8d17 {
    font-size: 1.75rem;
  }
  
  .slider-5772 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tag-8d17 {
    font-size: 1.5rem;
  }
  
  .slider-5772 h3 {
    font-size: 1.375rem;
  }
  
  .slider-5772 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.picture-purple-41b3 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.thumbnail-prev-686c {
  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;
}

.badge_630e {
  flex-shrink: 0;
}

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

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

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

.image-9545,
.solid-bde1,
.card-dirty-bf41 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.image-9545 thead,
.solid-bde1 thead {
  background: var(--color-primary);
  color: white;
}

.image-9545 th,
.image-9545 td,
.solid-bde1 th,
.solid-bde1 td,
.card-dirty-bf41 th,
.card-dirty-bf41 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .image-9545 th,
  .image-9545 td,
  .solid-bde1 th,
  .solid-bde1 td,
  .card-dirty-bf41 th,
  .card-dirty-bf41 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .image-9545,
  .solid-bde1,
  .card-dirty-bf41 {
    min-width: 600px;
  }
}

.image-9545 th,
.solid-bde1 th,
.card-dirty-bf41 th {
  font-weight: 600;
}

.image-9545 tbody tr:hover,
.solid-bde1 tbody tr:hover,
.card-dirty-bf41 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hovered-4032 h4 {
  color: white;
}

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

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

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

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

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

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

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

.photo-e74a:hover {
  text-decoration: underline;
}

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

.secondary-steel-7fc4 {
  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);
}

.secondary-steel-7fc4 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.solid-2586 {
  color: #4caf50;
}

.paragraph_b7be {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim-0464 .shade_upper_f46d {
  width: 100%;
  background: white;
}

.thumbnail_e1b4 .shade_upper_f46d {
  color: #667eea;
}

.new_daba .shade_upper_f46d {
  color: #f5576c;
}

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

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

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

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

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

.texture-simple-a840 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .center-e83a {
    padding: var(--space-md);
  }
  
  .texture-simple-a840 {
    padding: var(--space-md);
  }
  
  .badge_fixed_065e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.pro-9389,
.media_dirty_f63f,
.button_black_0160,
.large_e180 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-blue-8f1b {
  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);
}

.focused-a51b .avatar-blue-8f1b {
  background: #e8f5e9;
  color: var(--color-success);
}

.info-a6ba .avatar-blue-8f1b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.gallery-white-8382 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.wrapper-336f {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.west-027d {
  margin-bottom: var(--space-xl);
}

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

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

.primary-3b17 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.liquid-4c03 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.fresh_985e {
  text-align: right;
}

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

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

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

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

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

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

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

.thick-6f95 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-f0ab[aria-expanded="true"] .primary_8f14 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.box-clean-b8c3 {
  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);
}

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

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

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

.pagination_97d9,
.column-hovered-4461 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pagination_97d9 h4,
.column-hovered-4461 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pagination_97d9 ul,
.column-hovered-4461 ul {
  list-style: none;
  padding: 0;
}

.pagination_97d9 li,
.column-hovered-4461 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-a996 {
  font-style: italic;
}

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

.component-first-860b {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade_0a8b .status_hot_4e3c {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.wrapper_fast_c6e9 a:hover {
  color: white;
}

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

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

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

.carousel_inner_99b2 a:hover {
  color: white;
}

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

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

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

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

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

.gallery-fresh-049f {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.gallery-fresh-049f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bright_8a96 {
    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;
  }
  
  .popup-plasma-d0d0 {
    font-size: 2rem;
  }
  
  .tag-8d17 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hero_71d2,
  .notification-pressed-f411 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .narrow_d57d,
  .gold-28d8,
  .panel_0faf,
  .notice_6dc7,
  .tertiary-4c7d,
  .prev_f7ce,
  .tiny-2931,
  .backdrop-north-1ed7 {
    grid-template-columns: 1fr;
  }
  
  .sidebar_4b56 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .picture-cold-b83e {
    padding: var(--space-lg) 0;
  }
  
  .active_south_610d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .active_south_610d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .shade_upper_f46d {
    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;
  }
  
  .sidebar_4b56 {
    grid-template-columns: 1fr;
  }
  
  .grid_wood_de18,
  .icon-8351,
  .disabled_huge_6740 {
    flex-direction: column;
    width: 100%;
  }
  
  .component_4a3b,
  .action-0538,
  .grid_wood_de18 .shade_upper_f46d,
  .icon-8351 .shade_upper_f46d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .popup-plasma-d0d0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tag-8d17 {
    font-size: 1.375rem;
  }
  
  .fixed_4c16 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .next_aa17,
  .input-8946,
  .notice-d2ec,
  .backdrop-dim-ffe6,
  .wood_513d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .pressed-a4fb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .icon_dirty_0cea {
    gap: var(--space-xs);
  }
  
  .sort-middle-6fb6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .secondary-steel-7fc4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .heading_under_9cf1 {
    width: 150px;
    height: 150px;
  }
  
  .border-6e37 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fixed-1834,
  .pro-cee5,
  .grid_wood_de18,
  .component-first-860b,
  .solid-c374,
  .stale_1911,
  .hover-stone-511d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .picture-cold-b83e {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a97c */
.phantom-card-g3 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
