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

.border-rough-c3b9:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.caption_steel_d4d6,
header,
.thumbnail_cold_1f18,
.module-e2ff,
.article_plasma_7e25,
.logo-b9ca,
.hard_ce60,
.breadcrumb_thick_031e,
.wide_b274 {
  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
   ============================================ */
.caption_steel_d4d6 {
  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);
}

.message-clean-c151 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.module-prev-985c img {
  height: 36px;
  width: auto;
  display: block;
}

.liquid-1a09 {
  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;
}

.lite-1acb {
  flex: 1;
}

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

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

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

.texture_stale_834b.fn-active-fe66 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.media-2cfb {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.widget-current-c91d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hovered-074c[aria-expanded="true"] .mask_outer_98c2:nth-child(2) {
  opacity: 0;
}

.hovered-074c[aria-expanded="true"] .mask_outer_98c2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .lite-1acb::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .lite-1acb.media-4d6d {
    display: block;
    right: 0;
  }
  
  .fresh-83fc {
    flex-direction: column;
    gap: 0;
  }
  
  .texture_stale_834b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .lite-1acb::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;
  }
  
  .lite-1acb.media-4d6d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .lite-1acb {
    display: none;
  }
  
  .hovered-074c {
    display: flex;
  }
  
  .liquid-1a09 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .widget-current-c91d,
  .hover_iron_19de {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .media-2cfb {
    position: relative;
  }
  
  .gold_5d67 {
    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;
  }
  
  .grid_382c[aria-expanded="true"] + .gold_5d67 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .plasma-4741 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .logo-96e9 {
    gap: 8px;
  }
  
  .widget-current-c91d {
    display: none;
  }
  
  .hover_iron_19de {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .module-prev-985c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.shadow-15c4 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shadow-15c4 svg {
  flex-shrink: 0;
}

.shadow-15c4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.shadow-15c4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.element-wide-0de9 a {
  color: var(--color-primary);
  text-decoration: none;
}

.element-wide-0de9 a:hover {
  text-decoration: underline;
}

.row-paper-f5e7 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.header-solid-e161 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.header-small-c753 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

.tooltip-active-62cd {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .label_ce86 {
    grid-template-columns: 1fr;
  }
  
  .avatar_477d {
    font-size: 1.75rem;
  }
  
  .header-small-c753 {
    order: -1;
    max-width: 100%;
  }
  
  .banner_pink_4710 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .avatar_477d {
    font-size: 1.5rem;
  }
  
  .gold-c674 {
    font-size: 1rem;
  }
  
  .element-wide-0de9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .banner_pink_4710 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-bottom-5796 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-f4b8 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) {
  .status_gold_4089 {
    grid-template-columns: 1fr;
  }
  
  .info_west_96ec {
    font-size: 1.75rem;
  }
  
  .selected_e3ed {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .info_west_96ec {
    font-size: 1.5rem;
  }
  
  .selected_e3ed h3 {
    font-size: 1.375rem;
  }
  
  .selected_e3ed h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.text-0a68 {
  flex-shrink: 0;
}

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

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

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

.texture_gold_4f28,
.progress_340a,
.badge-current-2ae7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.texture_gold_4f28 thead,
.progress_340a thead {
  background: var(--color-primary);
  color: white;
}

.texture_gold_4f28 th,
.texture_gold_4f28 td,
.progress_340a th,
.progress_340a td,
.badge-current-2ae7 th,
.badge-current-2ae7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .texture_gold_4f28 th,
  .texture_gold_4f28 td,
  .progress_340a th,
  .progress_340a td,
  .badge-current-2ae7 th,
  .badge-current-2ae7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .texture_gold_4f28,
  .progress_340a,
  .badge-current-2ae7 {
    min-width: 600px;
  }
}

.texture_gold_4f28 th,
.progress_340a th,
.badge-current-2ae7 th {
  font-weight: 600;
}

.texture_gold_4f28 tbody tr:hover,
.progress_340a tbody tr:hover,
.badge-current-2ae7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.article-fast-6f8a {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.backdrop-red-7499 h4 {
  color: white;
}

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

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

.nav-stone-6c68:last-child {
  border-bottom: none;
}

.nav-stone-6c68 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.nav-stone-6c68 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.detail-a440:hover {
  text-decoration: underline;
}

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

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

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

.list-pro-9f43 {
  font-weight: 600;
  color: white;
}

.liquid-34b4 {
  list-style: none;
  padding: 0;
}

.liquid-34b4 li {
  padding: var(--space-xs) 0;
}

.tertiary-smooth-7c8e {
  color: #4caf50;
}

.secondary_260d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.video-9f65 {
  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;
}

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

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

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

.list-pro-9f43 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.huge-1f88 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.popup-action-0493 .inner-d0a8 {
  width: 100%;
  background: white;
}

.item-medium-a91a .inner-d0a8 {
  color: #667eea;
}

.solid-b55b .inner-d0a8 {
  color: #f5576c;
}

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

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

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

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

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

.widget-352c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .orange-0483 {
    padding: var(--space-md);
  }
  
  .widget-352c {
    padding: var(--space-md);
  }
  
  .highlight-8376 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.new-0b95 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.element_f80e,
.fresh-3cfc,
.tertiary-dirty-df70,
.component_cold_3074 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.message-pink-703c:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.middle_58fe .gradient_gold_4076 {
  background: #e8f5e9;
  color: var(--color-success);
}

.secondary_7169 .gradient_gold_4076 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cool_9766 {
  text-align: center;
}

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

.tabs-over-44d6 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.out-e386 .list-pro-9f43 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.texture-large-555f p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.primary-inner-9329 {
  margin-bottom: var(--space-xl);
}

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

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

.tabs-1fa1 {
  color: var(--color-text-light);
}

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

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

.center-0df9 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.overlay-large-df93 {
  text-align: right;
}

.overlay-large-df93 .info_first_ff92 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.section-black-5d1d {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.sort-1af3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider_cold_1c36,
.accordion-5c67 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.slider_cold_1c36 h4,
.accordion-5c67 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.slider_cold_1c36 ul,
.accordion-5c67 ul {
  list-style: none;
  padding: 0;
}

.slider_cold_1c36 li,
.accordion-5c67 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.button-in-4efd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.button-in-4efd ul {
  list-style: none;
  padding: 0;
}

.button-in-4efd li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.center-4b39 {
  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);
}

.current-cf12 {
  font-style: italic;
}

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

.up-035d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature_top_d0a6 {
  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) */
.secondary_hot_b57c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.summary_5ddb a:hover {
  color: white;
}

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

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

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

.photo-first-9114 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.photo-first-9114 a:hover {
  color: white;
}

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

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

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

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

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

.glass_54b2 .header-solid-e161 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.out_24ef a:hover {
  color: white;
}

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

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

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

.highlight_fresh_a33a a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.light-3a0e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bottom_d44e {
    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;
  }
  
  .avatar_477d {
    font-size: 2rem;
  }
  
  .info_west_96ec {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .label_ce86,
  .status_gold_4089 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .popup_2417,
  .iron_c9e7,
  .preview-ad78,
  .search_dim_6f53,
  .slow_33ef,
  .in_a8ab,
  .accordion_9de0,
  .feature_top_d0a6,
  .secondary_hot_b57c {
    grid-template-columns: 1fr;
  }
  
  .frame-complex-603f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hard_ce60 {
    padding: var(--space-lg) 0;
  }
  
  .lower_86ab li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .lower_86ab li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .inner-d0a8 {
    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;
  }
  
  .frame-complex-603f {
    grid-template-columns: 1fr;
  }
  
  .clean_1b22,
  .easy-e4c7,
  .slider-b0bc {
    flex-direction: column;
    width: 100%;
  }
  
  .secondary_8dfd,
  .footer_8264,
  .clean_1b22 .inner-d0a8,
  .easy-e4c7 .inner-d0a8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .avatar_477d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .info_west_96ec {
    font-size: 1.375rem;
  }
  
  .stale-7882 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .steel-3c01,
  .caption-1afe,
  .simple_befc,
  .mini_eb63,
  .secondary-8a82 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .layout-d80d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .table-3cb9 {
    gap: var(--space-xs);
  }
  
  .shadow-15c4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .texture_upper_1afd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .out-e386 {
    width: 150px;
    height: 150px;
  }
  
  .tabs-over-44d6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .caption_steel_d4d6,
  .thumbnail_cold_1f18,
  .clean_1b22,
  .up-035d,
  .breadcrumb_thick_031e,
  .wide_b274,
  .hovered-074c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hard_ce60 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6274 */
.phantom-card-m3 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
