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

.label-2a58:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.wrapper_5bb4,
header,
.alert_639b,
.rough_bf27,
.description_hovered_d847,
.heading_7ee0,
.grid-tiny-7ee0,
.secondary-fresh-2bb5,
.in-b580 {
  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
   ============================================ */
.wrapper_5bb4 {
  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);
}

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

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

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

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

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

.info-cbf8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.south-0fb0 {
  flex: 1;
}

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

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

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

.sort-b83a.fn-active-8699 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.notice-2d31 {
  position: relative;
}

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

.accordion-d9bd svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.layout_mini_a87c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .south-0fb0::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .south-0fb0.summary-2f26 {
    display: block;
    right: 0;
  }
  
  .soft-ecb5 {
    flex-direction: column;
    gap: 0;
  }
  
  .sort-b83a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .south-0fb0::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;
  }
  
  .south-0fb0.summary-2f26::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .south-0fb0 {
    display: none;
  }
  
  .basic_903f {
    display: flex;
  }
  
  .detail_north_99e9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .layout_mini_a87c,
  .avatar_502e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .notice-2d31 {
    position: relative;
  }
  
  .tertiary_old_4b9d {
    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;
  }
  
  .accordion-d9bd[aria-expanded="true"] + .tertiary_old_4b9d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .dirty-f22d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .label-upper-6483 {
    gap: 8px;
  }
  
  .layout_mini_a87c {
    display: none;
  }
  
  .avatar_502e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .info-cbf8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.hot-4507 svg {
  flex-shrink: 0;
}

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

.hot-4507 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.aside-95dc {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.column-smooth-c7ae {
  display: flex;
  gap: var(--space-sm);
}

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

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

.border-2a0e strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.text-2555 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-9ee1 {
  position: relative;
  text-align: center;
}

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

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

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

.table-pro-20a4 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .black_e0c5 {
    grid-template-columns: 1fr;
  }
  
  .black-d22a {
    font-size: 1.75rem;
  }
  
  .text-2555 {
    order: -1;
    max-width: 100%;
  }
  
  .background-9ee1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .black-d22a {
    font-size: 1.5rem;
  }
  
  .soft_5b21 {
    font-size: 1rem;
  }
  
  .texture_40e7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .background-9ee1 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-387a {
  list-style: none;
  counter-reset: toc-counter;
}

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

.chip-387a 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);
}

.chip-387a 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.grid-tiny-7ee0 {
  padding: var(--space-xxl) 0;
}

.stone-21f9 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

.tag_advanced_48ee 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_advanced_48ee h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

.stale_3426 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) {
  .dirty_20d9 {
    grid-template-columns: 1fr;
  }
  
  .panel_out_ef9c {
    font-size: 1.75rem;
  }
  
  .tag_advanced_48ee {
    max-width: 100%;
  }
}

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

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

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

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

.description-cool-22ac {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.nav_green_e531 {
  flex-shrink: 0;
}

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

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

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

.chip_6627,
.accordion_silver_e343,
.up_5c7f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chip_6627 thead,
.accordion_silver_e343 thead {
  background: var(--color-primary);
  color: white;
}

.chip_6627 th,
.chip_6627 td,
.accordion_silver_e343 th,
.accordion_silver_e343 td,
.up_5c7f th,
.up_5c7f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .chip_6627 th,
  .chip_6627 td,
  .accordion_silver_e343 th,
  .accordion_silver_e343 td,
  .up_5c7f th,
  .up_5c7f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .chip_6627,
  .accordion_silver_e343,
  .up_5c7f {
    min-width: 600px;
  }
}

.chip_6627 th,
.accordion_silver_e343 th,
.up_5c7f th {
  font-weight: 600;
}

.chip_6627 tbody tr:hover,
.accordion_silver_e343 tbody tr:hover,
.up_5c7f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.notice-hot-4f4c h4 {
  color: white;
}

.mask-slow-822b {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.dropdown-34f2 {
  list-style: none;
  padding: 0;
}

.dropdown-34f2 li {
  padding: var(--space-xs) 0;
}

.fast-6b87 {
  color: #4caf50;
}

.active_20aa {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_7efc .link_9c29 {
  width: 100%;
  background: white;
}

.slider_purple_8395 .link_9c29 {
  color: #667eea;
}

.module-iron-0b73 .link_9c29 {
  color: #f5576c;
}

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

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

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

.info-active-42b9 {
  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);
}

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

.clean-77ee {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .tertiary_orange_25f5 {
    padding: var(--space-md);
  }
  
  .clean-77ee {
    padding: var(--space-md);
  }
  
  .logo-complex-8b2b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.card-5d5f li {
  margin-bottom: var(--space-sm);
}

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

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

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

.logo-complex-8b2b {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.fixed-3dbc,
.paper-7975,
.paragraph_orange_fb22,
.hover_medium_6a02 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.iron-0f5b {
  border-color: var(--color-warning);
}

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

.wood_4db5 .inner_a8c1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.iron-0f5b .inner_a8c1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.surface-next-e63c {
  margin-top: var(--space-xxl);
}

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

.hover_out_7845 {
  text-align: center;
}

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

.description-soft-96e3 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.border-a967 .list_pro_5321 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.item-hard-685a {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.under-e6fb {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.frame_bdd5 {
  text-align: right;
}

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

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

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

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

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

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

.accordion-7065 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-27af {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.background_huge_eb21[aria-expanded="true"] .frame-27af {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.background-802a,
.paragraph-8f73 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.background-802a h4,
.paragraph-8f73 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.background-802a ul,
.paragraph-8f73 ul {
  list-style: none;
  padding: 0;
}

.background-802a li,
.paragraph-8f73 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.table_brown_765c {
  font-style: italic;
}

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

.box-680c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-motion-688c {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-motion-688c li {
  margin-bottom: var(--space-xs);
}

.content-motion-688c a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.content-motion-688c a:hover {
  color: white;
}

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

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

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

.right-335a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

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

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

@media (max-width: 768px) {
  .static-43b1,
  .progress-copper-696a {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.basic_f650 .column-smooth-c7ae {
  color: #4caf50;
  font-size: 0.875rem;
}

.fresh-46aa {
  list-style: none;
  padding: 0;
}

.fresh-46aa li {
  margin-bottom: var(--space-xs);
}

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

.fresh-46aa a:hover {
  color: white;
}

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

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

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

.overlay_38a9 a:hover {
  color: white;
}

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

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

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

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

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

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

.header-liquid-ff40 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;
}

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

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

@media (max-width: 768px) {
  .east_d5e9 {
    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;
  }
  
  .black-d22a {
    font-size: 2rem;
  }
  
  .panel_out_ef9c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .black_e0c5,
  .dirty_20d9 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .liquid-ccc7,
  .tooltip_thick_1f2d,
  .copper_2b20,
  .logo_9c78,
  .copper-5e8c,
  .menu-solid-dae0,
  .outline_2ac0,
  .static-43b1,
  .progress-copper-696a {
    grid-template-columns: 1fr;
  }
  
  .highlight-lite-ebd0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .grid-tiny-7ee0 {
    padding: var(--space-lg) 0;
  }
  
  .chip-387a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .chip-387a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .link_9c29 {
    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;
  }
  
  .highlight-lite-ebd0 {
    grid-template-columns: 1fr;
  }
  
  .paragraph_3fe0,
  .disabled-f039,
  .thick_84e3 {
    flex-direction: column;
    width: 100%;
  }
  
  .lower_785c,
  .logo_ddba,
  .paragraph_3fe0 .link_9c29,
  .disabled-f039 .link_9c29 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .black-d22a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .panel_out_ef9c {
    font-size: 1.375rem;
  }
  
  .form_7fd0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sidebar_simple_46ba,
  .bronze_b120,
  .section-bb12,
  .notification_71a0,
  .upper-8894 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slow_684c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .over_e3b0 {
    gap: var(--space-xs);
  }
  
  .hot-4507 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .dropdown-f92e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .border-a967 {
    width: 150px;
    height: 150px;
  }
  
  .description-soft-96e3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .wrapper_5bb4,
  .alert_639b,
  .paragraph_3fe0,
  .box-680c,
  .secondary-fresh-2bb5,
  .in-b580,
  .basic_903f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .grid-tiny-7ee0 {
    page-break-inside: avoid;
  }
}

/* css-noise: 336f */
.ghost-box-f3 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
