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

.hard-12f9:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.caption-95e5):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. */
.caption-95e5,
header,
.up_9c45,
.chip_blue_f194,
.focused_575a,
.heading-complex-efc9,
.input-basic-b2a1,
.layout_smooth_42b9,
.up_6d73 {
  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
   ============================================ */
.caption-95e5 {
  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);
}

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

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

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

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

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

.static-d2b7 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.solid-e0ce {
  flex: 1;
}

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

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

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

.north_855d.form-brown-9837 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.backdrop-soft-6fdc {
  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;
}

.backdrop-soft-6fdc:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.backdrop-soft-6fdc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.new-ec70[aria-expanded="true"] .mini-bebd:nth-child(2) {
  opacity: 0;
}

.new-ec70[aria-expanded="true"] .mini-bebd:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .solid-e0ce {
    display: none;
  }
  
  .new-ec70 {
    display: flex;
  }
  
  .iron_241f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .backdrop-soft-6fdc,
  .filter-a2f5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .info_1b82 {
    position: relative;
  }
  
  .caption_fresh_e5bd {
    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;
  }
  
  .widget_green_926b[aria-expanded="true"] + .caption_fresh_e5bd {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .title_under_313d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .aside_bottom_29b8 {
    gap: 8px;
  }
  
  .backdrop-soft-6fdc {
    display: none;
  }
  
  .filter-a2f5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .static-d2b7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.footer-1575 svg {
  flex-shrink: 0;
}

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

.footer-1575 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-wood-fb93 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.carousel-11d2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

.accordion-middle-13df {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .pro-2dbe {
    grid-template-columns: 1fr;
  }
  
  .description_narrow_fc91 {
    font-size: 1.75rem;
  }
  
  .carousel-11d2 {
    order: -1;
    max-width: 100%;
  }
  
  .highlight_bronze_7bea {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .description_narrow_fc91 {
    font-size: 1.5rem;
  }
  
  .main-7552 {
    font-size: 1rem;
  }
  
  .glass_0e5a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .highlight_bronze_7bea {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.wrapper-under-5554 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-advanced-6239 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.search-92b3 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.search-92b3 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);
}

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

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

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

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

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

.search-92b3 strong {
  font-weight: 600;
  color: var(--color-text);
}

.search-92b3 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.search-92b3 a:hover {
  color: var(--color-primary-dark);
}

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

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

.icon_red_2f54 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) {
  .border-8efb {
    grid-template-columns: 1fr;
  }
  
  .dynamic_60a1 {
    font-size: 1.75rem;
  }
  
  .search-92b3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dynamic_60a1 {
    font-size: 1.5rem;
  }
  
  .search-92b3 h3 {
    font-size: 1.375rem;
  }
  
  .search-92b3 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.popup-b87a {
  flex-shrink: 0;
}

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

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

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

.huge_3fa7,
.card_clean_8398,
.description-stale-53db {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.huge_3fa7 thead,
.card_clean_8398 thead {
  background: var(--color-primary);
  color: white;
}

.huge_3fa7 th,
.huge_3fa7 td,
.card_clean_8398 th,
.card_clean_8398 td,
.description-stale-53db th,
.description-stale-53db td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .huge_3fa7 th,
  .huge_3fa7 td,
  .card_clean_8398 th,
  .card_clean_8398 td,
  .description-stale-53db th,
  .description-stale-53db td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .huge_3fa7,
  .card_clean_8398,
  .description-stale-53db {
    min-width: 600px;
  }
}

.huge_3fa7 th,
.card_clean_8398 th,
.description-stale-53db th {
  font-weight: 600;
}

.huge_3fa7 tbody tr:hover,
.card_clean_8398 tbody tr:hover,
.description-stale-53db tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.active-b618 h4 {
  color: white;
}

.wrapper-cold-4dee {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.aside-brown-19b5 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.video_west_99c0 {
  color: #4caf50;
}

.backdrop-53cb {
  color: #ff9800;
}

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

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

.popup-pink-5cde {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.description-ee03 {
  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-af24 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_3a99 .pagination_new_3194 {
  width: 100%;
  background: white;
}

.block_lower_ab88 .pagination_new_3194 {
  color: #667eea;
}

.focused_63ea .pagination_new_3194 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-6fae,
.detail_96d7,
.tabs-up-0fc9,
.black_6822 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.basic-0fb6 {
  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) {
  .basic-0fb6 {
    font-size: 0.625rem;
  }
}

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

.in-15dc:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.box-easy-4bbd {
  border-color: var(--color-warning);
}

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

.pattern-e984 .west-b5a0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.box-easy-4bbd .west-b5a0 {
  background: #fff3e0;
  color: var(--color-warning);
}

.frame-fast-61e2 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.frame-fast-61e2 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.active-red-0be6 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.preview-2ed8 {
  text-align: center;
}

.panel-outer-55e0 {
  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);
}

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

.panel-outer-55e0 .breadcrumb_f1d8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.primary-static-882b {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.description-59f5 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline_0327 {
  text-align: right;
}

.outline_0327 .heading-4731 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.module-up-5fb1 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.accent-1f3d {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.article-next-bb63 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.list_short_5fb4 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

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

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

.wrapper-3c65 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.element-warm-6df4 {
  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);
}

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

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

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

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

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

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

.chip_silver_4d7e h4,
.sidebar_05ab h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.chip_silver_4d7e ul,
.sidebar_05ab ul {
  list-style: none;
  padding: 0;
}

.chip_silver_4d7e li,
.sidebar_05ab li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.link_e3c8 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-orange-3a07 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

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

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

.plasma_51b1 .tabs_white_7289 {
  color: #4caf50;
  font-size: 0.875rem;
}

.right-dbe7 {
  list-style: none;
  padding: 0;
}

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

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

.right-dbe7 a:hover {
  color: white;
}

.shadow-bottom-8c8e {
  list-style: none;
  padding: 0;
}

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

.shadow-bottom-8c8e a {
  color: #b0b0b0;
  text-decoration: none;
}

.shadow-bottom-8c8e a:hover {
  color: white;
}

.white-1e6e {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .white-1e6e {
    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;
  }
  
  .description_narrow_fc91 {
    font-size: 2rem;
  }
  
  .dynamic_60a1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pro-2dbe,
  .border-8efb {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .modal-acba,
  .solid_7f21,
  .next-013b,
  .secondary-short-d77f,
  .description_8525,
  .aside_a07f,
  .hard_382e,
  .info-92c4 {
    grid-template-columns: 1fr;
  }
  
  .tag-pressed-710e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .input-basic-b2a1 {
    padding: var(--space-lg) 0;
  }
  
  .light_6119 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .light_6119 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pagination_new_3194 {
    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;
  }
  
  .tag-pressed-710e {
    grid-template-columns: 1fr;
  }
  
  .widget-wood-fb93,
  .green-f619,
  .accent_clean_cebe {
    flex-direction: column;
    width: 100%;
  }
  
  .wrapper-under-5554,
  .button_7ab0,
  .widget-wood-fb93 .pagination_new_3194,
  .green-f619 .pagination_new_3194 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .description_narrow_fc91 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dynamic_60a1 {
    font-size: 1.375rem;
  }
  
  .grid-ef9b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .large_fdc3,
  .mini-af24,
  .pro-4f90,
  .wood-79c5,
  .grid-wood-3e9a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .basic-0fb6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .info-ac9c {
    gap: var(--space-xs);
  }
  
  .footer-1575 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .container_smooth_d81e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .panel-outer-55e0 {
    width: 150px;
    height: 150px;
  }
  
  .chip_fixed_cdd5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .caption-95e5,
  .up_9c45,
  .widget-wood-fb93,
  .heading_6b4f,
  .layout_smooth_42b9,
  .up_6d73,
  .new-ec70 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .input-basic-b2a1 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: dee6 */
.phantom-card-o7 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
