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

.block_be50:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .tabs-blue-6fe4 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .tabs-blue-6fe4 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.link_d3c6):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. */
.link_d3c6,
header,
.backdrop-7ca2,
.top-57d4,
.caption_f914,
.media_daac,
.chip_paper_1420,
.panel-out-0786,
.outer-8db7 {
  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
   ============================================ */
.link_d3c6 {
  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);
}

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

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

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

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

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

.logo-gas-f357 img {
  height: 36px;
  width: auto;
  display: block;
}

.panel-lower-93aa {
  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;
}

.item-next-5c64 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.container-thick-fa36 {
  position: relative;
}

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

.primary-cool-17b4 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.last_0932 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.container-smooth-217e {
  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;
}

.container-smooth-217e: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);
}

.container-smooth-217e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.widget-yellow-47eb {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.fixed_5231[aria-expanded="true"] .widget-yellow-47eb:nth-child(2) {
  opacity: 0;
}

.fixed_5231[aria-expanded="true"] .widget-yellow-47eb:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .item-next-5c64::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .item-next-5c64.highlight-6dc3 {
    display: block;
    right: 0;
  }
  
  .footer_cccb {
    flex-direction: column;
    gap: 0;
  }
  
  .heading_d2a9 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .item-next-5c64::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;
  }
  
  .item-next-5c64.highlight-6dc3::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .item-next-5c64 {
    display: none;
  }
  
  .fixed_5231 {
    display: flex;
  }
  
  .panel-lower-93aa {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .last_0932,
  .container-smooth-217e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .container-thick-fa36 {
    position: relative;
  }
  
  .huge_a580 {
    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;
  }
  
  .primary-cool-17b4[aria-expanded="true"] + .huge_a580 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .input-down-eb16 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tag-7517 {
    gap: 8px;
  }
  
  .last_0932 {
    display: none;
  }
  
  .container-smooth-217e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .logo-gas-f357 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .container-smooth-217e {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .container-smooth-217e svg {
    width: 14px;
    height: 14px;
  }
  
  .overlay-smooth-aee7 {
    gap: var(--space-sm);
  }
}

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

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

.focused-7fb4 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.focused-7fb4 svg {
  flex-shrink: 0;
}

.focused-7fb4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.focused-7fb4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.accordion-light-fe7a a {
  color: var(--color-primary);
  text-decoration: none;
}

.accordion-light-fe7a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.paragraph-current-5095 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.paragraph-current-5095 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.filter-paper-036c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tabs_action_ed9c {
    grid-template-columns: 1fr;
  }
  
  .backdrop_1682 {
    font-size: 1.75rem;
  }
  
  .silver-ddcf {
    order: -1;
    max-width: 100%;
  }
  
  .filter-paper-036c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .backdrop_1682 {
    font-size: 1.5rem;
  }
  
  .popup_d6c3 {
    font-size: 1rem;
  }
  
  .accordion-light-fe7a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .filter-paper-036c {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.component-last-ec9a {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.mini-3dce {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-down-aa5b {
  background: var(--color-bg-section);
}

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

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

.layout-paper-60ea {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_44ae 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) {
  .heading-black-d481 {
    grid-template-columns: 1fr;
  }
  
  .layout-paper-60ea {
    font-size: 1.75rem;
  }
  
  .active_right_cd36 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .layout-paper-60ea {
    font-size: 1.5rem;
  }
  
  .active_right_cd36 h3 {
    font-size: 1.375rem;
  }
  
  .active_right_cd36 h4 {
    font-size: 1.125rem;
  }
}

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

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

.component-6ce0 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.fast-957e {
  flex-shrink: 0;
}

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

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

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

.hero-advanced-1cda,
.fast_c16d,
.chip_hard_de70 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-advanced-1cda thead,
.fast_c16d thead {
  background: var(--color-primary);
  color: white;
}

.hero-advanced-1cda th,
.hero-advanced-1cda td,
.fast_c16d th,
.fast_c16d td,
.chip_hard_de70 th,
.chip_hard_de70 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-advanced-1cda th,
  .hero-advanced-1cda td,
  .fast_c16d th,
  .fast_c16d td,
  .chip_hard_de70 th,
  .chip_hard_de70 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hero-advanced-1cda,
  .fast_c16d,
  .chip_hard_de70 {
    min-width: 600px;
  }
}

.hero-advanced-1cda th,
.fast_c16d th,
.chip_hard_de70 th {
  font-weight: 600;
}

.hero-advanced-1cda tbody tr:hover,
.fast_c16d tbody tr:hover,
.chip_hard_de70 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.yellow-8288 h4 {
  color: white;
}

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

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

.center-4b60:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.left-e08c {
  list-style: none;
  padding: 0;
}

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

.title_7fc9 {
  color: #4caf50;
}

.stale_4a59 {
  color: #ff9800;
}

.wrapper-wood-2ed4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-down-a028 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.main_liquid_7a79 .badge_in_2bd4 {
  width: 100%;
  background: white;
}

.copper_5b2e .badge_in_2bd4 {
  color: #667eea;
}

.input-cool-559a .badge_in_2bd4 {
  color: #f5576c;
}

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

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

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

.dropdown-iron-503d {
  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);
}

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

.summary-blue-3391 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .static_3e18 {
    padding: var(--space-md);
  }
  
  .summary-blue-3391 {
    padding: var(--space-md);
  }
  
  .content_stone_a31c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.up_49ed,
.left_ae9f,
.primary-plasma-8c83,
.title-3def {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.image-56b0:hover {
  background: var(--color-primary-dark);
}

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

.module-cool-ce55 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.alert-medium-2cd6 {
  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);
}

.highlight_fa73 .alert-medium-2cd6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.article_gold_8900 .alert-medium-2cd6 {
  background: #fff3e0;
  color: var(--color-warning);
}

.container-white-1c38 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.container-white-1c38 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.video-01de {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.pattern-fresh-0dd2 {
  margin-top: var(--space-xxl);
}

.image-yellow-9839 {
  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);
}

.white_9852 {
  text-align: center;
}

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

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

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

.box-narrow-07f5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

.header-glass-8eb3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.link-plasma-43f0 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.alert-prev-b944 {
  border: 2px solid #4caf50;
}

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

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

.alert-outer-fca5 {
  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-96ce {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.dropdown_rough_ba8f {
  text-align: right;
}

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

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

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

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

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

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

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

.iron-3bf2 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-current-db65 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.top_a160[aria-expanded="true"] .main-current-db65 {
  transform: rotate(180deg);
}

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

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

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

.image-out-ed0d li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.lower-83db {
  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);
}

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

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

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

.tabs-0baf,
.badge-faf9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tabs-0baf h4,
.badge-faf9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tabs-0baf ul,
.badge-faf9 ul {
  list-style: none;
  padding: 0;
}

.tabs-0baf li,
.badge-faf9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.notification-dd93 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-inner-98c6 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

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

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

.dirty-7167 .hero_0fe1 {
  color: #4caf50;
  font-size: 0.875rem;
}

.search-41d0 {
  list-style: none;
  padding: 0;
}

.search-41d0 li {
  margin-bottom: var(--space-xs);
}

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

.search-41d0 a:hover {
  color: white;
}

.outer-46ce {
  list-style: none;
  padding: 0;
}

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

.outer-46ce a {
  color: #b0b0b0;
  text-decoration: none;
}

.outer-46ce a:hover {
  color: white;
}

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

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

.search-soft-98d4 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .paper_19b2 {
    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;
  }
  
  .backdrop_1682 {
    font-size: 2rem;
  }
  
  .layout-paper-60ea {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tabs_action_ed9c,
  .heading-black-d481 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .box_hot_ce1e,
  .wide-1c8e,
  .lite-0a29,
  .summary_6ee9,
  .logo_pro_1fb4,
  .element-09e1,
  .bottom-8e54,
  .element-ecbb {
    grid-template-columns: 1fr;
  }
  
  .white-44c8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .chip_paper_1420 {
    padding: var(--space-lg) 0;
  }
  
  .element_brown_2482 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .element_brown_2482 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .badge_in_2bd4 {
    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;
  }
  
  .white-44c8 {
    grid-template-columns: 1fr;
  }
  
  .tabs_active_e706,
  .photo_4ca3,
  .feature_167a {
    flex-direction: column;
    width: 100%;
  }
  
  .component-last-ec9a,
  .mini-3dce,
  .tabs_active_e706 .badge_in_2bd4,
  .photo_4ca3 .badge_in_2bd4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .backdrop_1682 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .layout-paper-60ea {
    font-size: 1.375rem;
  }
  
  .blue-da3a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .breadcrumb-black-4d9f,
  .thumbnail-5d19,
  .simple_8272,
  .section-active-87a0,
  .inner-d831 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .purple_0831 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wrapper-2a1f {
    gap: var(--space-xs);
  }
  
  .focused-7fb4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hovered_afcd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .background_new_e308 {
    width: 150px;
    height: 150px;
  }
  
  .disabled_hot_bf90 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .link_d3c6,
  .backdrop-7ca2,
  .tabs_active_e706,
  .title_light_1466,
  .panel-out-0786,
  .outer-8db7,
  .fixed_5231 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .chip_paper_1420 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: c842 */
.phantom-card-c5 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
