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

.highlight_a32e:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.pro-8a4f):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.pro-8a4f,
header,
.label_cool_68b3,
.next-9579,
.yellow_d0c1,
.fixed-c143,
.overlay-3a0b,
.status-5e21,
.pressed-8ec0 {
  max-width: none;
}

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

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

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

/* Scrolled state */
.pro-8a4f.smooth-e5e4 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.next-9567 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.orange-eead {
  flex: 1;
}

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

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

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

.banner_static_82f4.fn-active-d22c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.solid-6014 {
  position: relative;
}

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

.stale-ad4e svg {
  transition: transform 0.2s ease;
}

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

.backdrop-short-4de1 {
  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;
}

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

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

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

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

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

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

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

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

.current-2657 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

/* Hamburger animation when active */
.feature-5fc5[aria-expanded="true"] .badge-460c:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.feature-5fc5[aria-expanded="true"] .badge-460c:nth-child(2) {
  opacity: 0;
}

.feature-5fc5[aria-expanded="true"] .badge-460c:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .orange-eead {
    display: none;
  }
  
  .feature-5fc5 {
    display: flex;
  }
  
  .menu-f430 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .current-2657,
  .hero-c3d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .solid-6014 {
    position: relative;
  }
  
  .backdrop-short-4de1 {
    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;
  }
  
  .stale-ad4e[aria-expanded="true"] + .backdrop-short-4de1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .module_inner_0bf7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .blue_b29a {
    gap: 8px;
  }
  
  .current-2657 {
    display: none;
  }
  
  .hero-c3d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .next-9567 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.purple_5410 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.nav-left-e6ee a {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-left-e6ee a:hover {
  text-decoration: underline;
}

.widget-dark-55f0 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.steel-50e3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.container-fixed-b05c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .layout-under-3583 {
    grid-template-columns: 1fr;
  }
  
  .tooltip-stone-d29f {
    font-size: 1.75rem;
  }
  
  .pattern-f929 {
    order: -1;
    max-width: 100%;
  }
  
  .container-fixed-b05c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tooltip-stone-d29f {
    font-size: 1.5rem;
  }
  
  .description-brown-dcbd {
    font-size: 1rem;
  }
  
  .nav-left-e6ee {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .container-fixed-b05c {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-aeb4 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;
}

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

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

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

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

.notice-dark-d5a3 {
  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);
}

.banner-4dbe {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-dfe6 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) {
  .tag_13de {
    grid-template-columns: 1fr;
  }
  
  .banner-4dbe {
    font-size: 1.75rem;
  }
  
  .easy-d18b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .banner-4dbe {
    font-size: 1.5rem;
  }
  
  .easy-d18b h3 {
    font-size: 1.375rem;
  }
  
  .easy-d18b h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.thumbnail-14cd {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tooltip-tall-7afe strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.mask-37f5 {
  flex-shrink: 0;
}

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

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

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

.outline_slow_c253,
.icon_5b49,
.thick-5c48 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.outline_slow_c253 thead,
.icon_5b49 thead {
  background: var(--color-primary);
  color: white;
}

.outline_slow_c253 th,
.outline_slow_c253 td,
.icon_5b49 th,
.icon_5b49 td,
.thick-5c48 th,
.thick-5c48 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .outline_slow_c253 th,
  .outline_slow_c253 td,
  .icon_5b49 th,
  .icon_5b49 td,
  .thick-5c48 th,
  .thick-5c48 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .outline_slow_c253,
  .icon_5b49,
  .thick-5c48 {
    min-width: 600px;
  }
}

.outline_slow_c253 th,
.icon_5b49 th,
.thick-5c48 th {
  font-weight: 600;
}

.outline_slow_c253 tbody tr:hover,
.icon_5b49 tbody tr:hover,
.thick-5c48 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.left_13c1 h4 {
  color: white;
}

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

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

.surface-plasma-bd16:last-child {
  border-bottom: none;
}

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

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

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

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

.primary-steel-07c5:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.dynamic-c370 {
  color: #4caf50;
}

.form-stale-7985 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-cold-fdb4 .focus-orange-d4a4 {
  width: 100%;
  background: white;
}

.carousel-8a48 .focus-orange-d4a4 {
  color: #667eea;
}

.component_full_632b .focus-orange-d4a4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .focused_72f2 {
    padding: var(--space-md);
  }
  
  .brown_52cd {
    padding: var(--space-md);
  }
  
  .shadow-red-e501 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.paragraph-left-7936 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.mini-b2e0,
.input_soft_3ea8,
.pattern-stone-ab64,
.input_54a6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.popup-fluid-b511 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.header-68e9 {
  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);
}

.slow_4ce0 .header-68e9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.image_ff3a .header-68e9 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.accordion-focused-6ce0 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

.preview_aeea {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.wrapper_east_8f0f {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-dirty-16c1 {
  color: var(--color-text-light);
}

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

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

.menu-pink-7818 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.simple-770d {
  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;
}

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

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

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

.pressed-49a9 {
  text-align: right;
}

.pressed-49a9 .item_hot_b7a7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.item-tiny-2da3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.pattern-active-438f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.hero-dark-f670 {
  background: #e8f5e9;
  color: #2e7d32;
}

.picture-0307 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.purple-0803[aria-expanded="true"] .outline-b826 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .heading-large-5df0 {
    grid-template-columns: 1fr;
  }
}

.description-pro-703d,
.notification-next-157f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.description-pro-703d h4,
.notification-next-157f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.description-pro-703d ul,
.notification-next-157f ul {
  list-style: none;
  padding: 0;
}

.description-pro-703d li,
.notification-next-157f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.message-huge-8d15 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.message-huge-8d15 ul {
  list-style: none;
  padding: 0;
}

.message-huge-8d15 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.picture_4f13 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.chip_hot_7a6a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.mask_gas_7667 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.mask_gas_7667 a:hover {
  color: white;
}

.gallery_narrow_26e1 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.gallery_narrow_26e1 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.gallery_narrow_26e1 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.hero_advanced_9922 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero_advanced_9922 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.hero_advanced_9922 a:hover {
  color: white;
}

.search_top_0e96 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.silver-c7d5 .down-c8a3 {
  color: #4caf50;
  font-size: 0.875rem;
}

.photo-dark-0f60 {
  list-style: none;
  padding: 0;
}

.photo-dark-0f60 li {
  margin-bottom: var(--space-xs);
}

.photo-dark-0f60 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.photo-dark-0f60 a:hover {
  color: white;
}

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

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

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

.description_orange_4ff5 a:hover {
  color: white;
}

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

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

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

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

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

.heading-hot-dcc4 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.heading-hot-dcc4 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .search_top_0e96 {
    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;
  }
  
  .tooltip-stone-d29f {
    font-size: 2rem;
  }
  
  .banner-4dbe {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .layout-under-3583,
  .tag_13de {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary-b99f,
  .tag_static_b108,
  .upper_a141,
  .media_huge_4281,
  .heading-large-5df0,
  .down_ead9,
  .hero-7c39,
  .label_2e46,
  .chip_hot_7a6a {
    grid-template-columns: 1fr;
  }
  
  .table-selected-5669 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .overlay-3a0b {
    padding: var(--space-lg) 0;
  }
  
  .summary-aeb4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .summary-aeb4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focus-orange-d4a4 {
    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;
  }
  
  .table-selected-5669 {
    grid-template-columns: 1fr;
  }
  
  .steel-50e3,
  .search_under_1e70,
  .sort-large-694d {
    flex-direction: column;
    width: 100%;
  }
  
  .red-6443,
  .table_b0dc,
  .steel-50e3 .focus-orange-d4a4,
  .search_under_1e70 .focus-orange-d4a4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tooltip-stone-d29f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .banner-4dbe {
    font-size: 1.375rem;
  }
  
  .search-current-2324 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .menu-thick-a040,
  .thick-e2c5,
  .soft-8a67,
  .dropdown_7bd4,
  .texture-cfd8 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hover_bright_ed0d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .disabled_5570 {
    gap: var(--space-xs);
  }
  
  .purple_5410 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .popup-last-de8a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .soft_a1e1 {
    width: 150px;
    height: 150px;
  }
  
  .header_advanced_0051 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pro-8a4f,
  .label_cool_68b3,
  .steel-50e3,
  .rough-a437,
  .status-5e21,
  .pressed-8ec0,
  .feature-5fc5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .overlay-3a0b {
    page-break-inside: avoid;
  }
}

/* css-noise: 3e90 */
.phantom-card-w6 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
