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

.north-e9ec:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.slow_ead9,
header,
.feature-80ae,
.north-7c3b,
.texture_tall_1253,
.logo_hard_fb42,
.first-cb36,
.modal-in-f178,
.list-149f {
  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
   ============================================ */
.slow_ead9 {
  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);
}

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

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

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

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

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

.modal-plasma-4dc8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.status_ba26 {
  flex: 1;
}

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

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

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

.fresh_a8cd.fn-active-83f1 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.sidebar-smooth-4e42 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.title-left-c26a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.banner-d954[aria-expanded="true"] .pagination_last_4964:nth-child(2) {
  opacity: 0;
}

.banner-d954[aria-expanded="true"] .pagination_last_4964:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .status_ba26 {
    display: none;
  }
  
  .banner-d954 {
    display: flex;
  }
  
  .hard-e966 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .title-left-c26a,
  .accordion_hot_419e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .sidebar-smooth-4e42 {
    position: relative;
  }
  
  .large-aae3 {
    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;
  }
  
  .block_a491[aria-expanded="true"] + .large-aae3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tiny_b6c0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .current_a5a8 {
    gap: 8px;
  }
  
  .title-left-c26a {
    display: none;
  }
  
  .accordion_hot_419e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .modal-plasma-4dc8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.shade_soft_538c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge-54aa {
  display: flex;
  gap: var(--space-sm);
}

.row-dirty-97e3 {
  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;
}

.form-cold-7282 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-cold-7282 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.stale-3af2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fresh-d552 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .dirty-b0ca {
    grid-template-columns: 1fr;
  }
  
  .table-918d {
    font-size: 1.75rem;
  }
  
  .stale-3af2 {
    order: -1;
    max-width: 100%;
  }
  
  .fresh-d552 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .table-918d {
    font-size: 1.5rem;
  }
  
  .gradient-clean-805e {
    font-size: 1rem;
  }
  
  .dim_492a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .fresh-d552 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.nav-huge-246c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-in-407d {
  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);
}

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

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

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

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

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

.tag-down-9438 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.tag-down-9438 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);
}

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

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

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

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

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

.tag-down-9438 strong {
  font-weight: 600;
  color: var(--color-text);
}

.tag-down-9438 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.tag-down-9438 a:hover {
  color: var(--color-primary-dark);
}

.photo-1f5f {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.photo-1f5f li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .border-lite-565f {
    grid-template-columns: 1fr;
  }
  
  .hover-ff8e {
    font-size: 1.75rem;
  }
  
  .tag-down-9438 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hover-ff8e {
    font-size: 1.5rem;
  }
  
  .tag-down-9438 h3 {
    font-size: 1.375rem;
  }
  
  .tag-down-9438 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.article-3a87 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.hero-new-0dea {
  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;
}

.message_yellow_4af0 {
  flex-shrink: 0;
}

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

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

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

.message_pro_b9db,
.gold-f6af,
.detail_3e13 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.message_pro_b9db thead,
.gold-f6af thead {
  background: var(--color-primary);
  color: white;
}

.message_pro_b9db th,
.message_pro_b9db td,
.gold-f6af th,
.gold-f6af td,
.detail_3e13 th,
.detail_3e13 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .message_pro_b9db th,
  .message_pro_b9db td,
  .gold-f6af th,
  .gold-f6af td,
  .detail_3e13 th,
  .detail_3e13 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .message_pro_b9db,
  .gold-f6af,
  .detail_3e13 {
    min-width: 600px;
  }
}

.message_pro_b9db th,
.gold-f6af th,
.detail_3e13 th {
  font-weight: 600;
}

.message_pro_b9db tbody tr:hover,
.gold-f6af tbody tr:hover,
.detail_3e13 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.cool_ccf8 h4 {
  color: white;
}

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

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

.status-action-2ef5:last-child {
  border-bottom: none;
}

.status-action-2ef5 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.status-action-2ef5 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.modal-smooth-cd15:hover {
  text-decoration: underline;
}

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

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

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

.outline-red-3404 {
  font-weight: 600;
  color: white;
}

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

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

.caption-a667 {
  color: #4caf50;
}

.container_dirty_7a8a {
  color: #ff9800;
}

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

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

.media-in-23ed {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer-00d4 .bottom_2b15 {
  width: 100%;
  background: white;
}

.notice_first_3367 .bottom_2b15 {
  color: #667eea;
}

.hidden_pink_ce3f .bottom_2b15 {
  color: #f5576c;
}

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

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

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

.wrapper-0cf0 {
  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);
}

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

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

@media (max-width: 768px) {
  .left-fcda {
    padding: var(--space-md);
  }
  
  .accent-9572 {
    padding: var(--space-md);
  }
  
  .disabled-8154 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.button_744e,
.preview_complex_3e90,
.breadcrumb-9f23,
.rough-cd66 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.tooltip-fluid-28fc:hover {
  background: var(--color-primary-dark);
}

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

.form-hard-5cb7 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.gold-9d75 {
  border-color: var(--color-warning);
}

.border-smooth-7953 {
  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);
}

.mask_9381 .border-smooth-7953 {
  background: #e8f5e9;
  color: var(--color-success);
}

.gold-9d75 .border-smooth-7953 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas_388a {
  text-align: center;
}

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

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

.white_06d8 .outline-red-3404 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.warm-3202 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.over-8901 {
  text-align: right;
}

.over-8901 .video-73f3 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.input-smooth-bb19 {
  background: #e8f5e9;
  color: #2e7d32;
}

.menu-lite-8155 {
  background: #e3f2fd;
  color: #1565c0;
}

.soft-0eee {
  background: #fff3e0;
  color: #e65100;
}

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

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

.description-79aa {
  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);
}

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

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

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

.box-easy-beaf strong {
  color: var(--color-primary);
}

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

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

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

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

.plasma-1adb {
  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);
}

.plasma-1adb:hover {
  background: var(--color-bg-alt);
}

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

.plasma-1adb[aria-expanded="true"] .widget_stone_52aa {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label_cb23 ul,
.photo_76d6 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-plasma-72f7 {
  font-style: italic;
}

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

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

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

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

.primary-dynamic-654a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.notice-green-9b49 {
  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);
}

.notice-green-9b49:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.notice-green-9b49 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.progress-new-dd4f .badge-54aa {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.title_red_6331 a:hover {
  color: white;
}

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

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

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

.thumbnail_wide_61e0 a:hover {
  color: white;
}

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

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

.steel-3cf2 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.glass-653e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .icon_black_264f {
    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;
  }
  
  .table-918d {
    font-size: 2rem;
  }
  
  .hover-ff8e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dirty-b0ca,
  .border-lite-565f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .nav-5b42,
  .item-stale-0db1,
  .component-6ff7,
  .highlight_wide_d424,
  .main_2b22,
  .status_simple_5e91,
  .last_c844,
  .outer_064b {
    grid-template-columns: 1fr;
  }
  
  .gold_720d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .first-cb36 {
    padding: var(--space-lg) 0;
  }
  
  .purple_5807 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .purple_5807 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .bottom_2b15 {
    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;
  }
  
  .gold_720d {
    grid-template-columns: 1fr;
  }
  
  .stale_4051,
  .primary-dynamic-654a,
  .sidebar-east-0686 {
    flex-direction: column;
    width: 100%;
  }
  
  .label_1e34,
  .backdrop_dark_cabe,
  .stale_4051 .bottom_2b15,
  .primary-dynamic-654a .bottom_2b15 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .table-918d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hover-ff8e {
    font-size: 1.375rem;
  }
  
  .alert-a591 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .nav-huge-246c,
  .silver-2d37,
  .tabs_858c,
  .footer_smooth_c095,
  .tertiary_lower_c7e5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .article_e656 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hard-236f {
    gap: var(--space-xs);
  }
  
  .shade_soft_538c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column_d7cd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .white_06d8 {
    width: 150px;
    height: 150px;
  }
  
  .tooltip-7433 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .slow_ead9,
  .feature-80ae,
  .stale_4051,
  .red-ad6d,
  .modal-in-f178,
  .list-149f,
  .banner-d954 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .first-cb36 {
    page-break-inside: avoid;
  }
}

/* css-noise: 9b84 */
.ghost-box-u6 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
