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

.paper_11da:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.badge-6547,
header,
.fast-693b,
.column-fbd3,
.header_next_e4e9,
.prev_d60f,
.dynamic-a08c,
.frame-simple-f52d,
.upper_0a57 {
  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
   ============================================ */
.badge-6547 {
  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);
}

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

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

/* Scrolled state */
.badge-6547.top-342f {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.menu-078f img {
  height: 36px;
  width: auto;
  display: block;
}

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

.banner-top-e0d3 {
  flex: 1;
}

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

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

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

.iron_5f5b.fn-active-03c0 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.mini_553b {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.content-white-a55a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.card-north-cf71[aria-expanded="true"] .bright_373d:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .banner-top-e0d3 {
    display: none;
  }
  
  .card-north-cf71 {
    display: flex;
  }
  
  .alert_04a6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .content-white-a55a,
  .module_bf16 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .mini_553b {
    position: relative;
  }
  
  .pressed_78ac {
    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-5b0a[aria-expanded="true"] + .pressed_78ac {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .south-8f64 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pink_280a {
    gap: 8px;
  }
  
  .content-white-a55a {
    display: none;
  }
  
  .module_bf16 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .menu-078f img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.hovered-ec87 svg {
  flex-shrink: 0;
}

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

.hovered-ec87 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-black-c6c7 {
  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;
}

.feature-right-9602 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-right-9602 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.form-bronze-8057 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-8876 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .action_b491 {
    grid-template-columns: 1fr;
  }
  
  .slider-9bbd {
    font-size: 1.75rem;
  }
  
  .form-bronze-8057 {
    order: -1;
    max-width: 100%;
  }
  
  .layout-8876 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slider-9bbd {
    font-size: 1.5rem;
  }
  
  .solid-67ce {
    font-size: 1rem;
  }
  
  .pink_e71a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .layout-8876 {
    max-width: 250px;
  }
}

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

.progress-active-ca39 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.description-94d2 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

.sort-old-84bc {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.message-2aa1 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.message-2aa1 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);
}

.message-2aa1 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;
}

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

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

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

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

.solid-21ed {
  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);
}

.description-4e4e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text_cold_416b 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) {
  .logo-c3b2 {
    grid-template-columns: 1fr;
  }
  
  .description-4e4e {
    font-size: 1.75rem;
  }
  
  .overlay-c19c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .description-4e4e {
    font-size: 1.5rem;
  }
  
  .overlay-c19c h3 {
    font-size: 1.375rem;
  }
  
  .overlay-c19c h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.info-liquid-8869 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.module_bright_e274 {
  flex-shrink: 0;
}

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

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

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

.media_first_dc79,
.column-eb99,
.green_ac81 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media_first_dc79 thead,
.column-eb99 thead {
  background: var(--color-primary);
  color: white;
}

.media_first_dc79 th,
.media_first_dc79 td,
.column-eb99 th,
.column-eb99 td,
.green_ac81 th,
.green_ac81 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .media_first_dc79 th,
  .media_first_dc79 td,
  .column-eb99 th,
  .column-eb99 td,
  .green_ac81 th,
  .green_ac81 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .media_first_dc79,
  .column-eb99,
  .green_ac81 {
    min-width: 600px;
  }
}

.media_first_dc79 th,
.column-eb99 th,
.green_ac81 th {
  font-weight: 600;
}

.media_first_dc79 tbody tr:hover,
.column-eb99 tbody tr:hover,
.green_ac81 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.primary-hovered-a889 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.in-efc9 {
  font-weight: 600;
  color: white;
}

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

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

.fixed_3d13 {
  color: #4caf50;
}

.short_716b {
  color: #ff9800;
}

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

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

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

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

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

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

/* ============================================
   15. FEATURE GRID
   ============================================ */
.popup-tiny-07de {
  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-tiny-07de {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_79fc .label-c984 {
  width: 100%;
  background: white;
}

.container_ddd0 .label-c984 {
  color: #667eea;
}

.outline-copper-76e9 .label-c984 {
  color: #f5576c;
}

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

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

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

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

.row-action-0120 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.dropdown-bronze-f977 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .row-action-0120 {
    padding: var(--space-md);
  }
  
  .dropdown-bronze-f977 {
    padding: var(--space-md);
  }
  
  .table_top_31d3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.upper-4b3e,
.accent-liquid-3f2d,
.carousel-e569,
.wrapper_paper_861e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .border-out-31c0 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.small-fee7 .center-dbae {
  background: #e8f5e9;
  color: var(--color-success);
}

.aside_9d24 .center-dbae {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.rough-89d4 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.block-light-3f78 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.dim_7429 {
  text-align: center;
}

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

.menu-simple-9dd3 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.panel_af3d .in-efc9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.south-1fd5 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.logo-stone-ae6f {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.mini-32a8 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.secondary-solid-11d8 {
  text-align: right;
}

.secondary-solid-11d8 .hard_51a4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.pagination-43be {
  background: #e8f5e9;
  color: #2e7d32;
}

.hot-14cf {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

.sidebar-dynamic-5cf0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-lower-7b62 {
  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);
}

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

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

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

.slider-c878,
.gallery-cc13 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.slider-c878 h4,
.gallery-cc13 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.slider-c878 ul,
.gallery-cc13 ul {
  list-style: none;
  padding: 0;
}

.slider-c878 li,
.gallery-cc13 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.form-2ccb ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.overlay_f9a8 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_bright_0050 .current_3f33 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.simple_4cae a:hover {
  color: white;
}

.background-west-6f8e {
  list-style: none;
  padding: 0;
}

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

.background-west-6f8e a {
  color: #b0b0b0;
  text-decoration: none;
}

.background-west-6f8e a:hover {
  color: white;
}

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

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

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

.notification-glass-8726 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.prev-f5b8:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .center_961c {
    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;
  }
  
  .slider-9bbd {
    font-size: 2rem;
  }
  
  .description-4e4e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .action_b491,
  .logo-c3b2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .popup-tiny-07de,
  .border-out-31c0,
  .iron_c5df,
  .alert_west_535b,
  .last-4373,
  .warm-d5da,
  .secondary_837d,
  .element_full_8466 {
    grid-template-columns: 1fr;
  }
  
  .tabs_paper_2944 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .dynamic-a08c {
    padding: var(--space-lg) 0;
  }
  
  .message-2aa1 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .message-2aa1 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .label-c984 {
    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;
  }
  
  .tabs_paper_2944 {
    grid-template-columns: 1fr;
  }
  
  .prev_f16e,
  .shadow_ac3d,
  .hard_c2f7 {
    flex-direction: column;
    width: 100%;
  }
  
  .tooltip_west_d006,
  .description-94d2,
  .prev_f16e .label-c984,
  .shadow_ac3d .label-c984 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slider-9bbd {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .description-4e4e {
    font-size: 1.375rem;
  }
  
  .dynamic_e118 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .first_ac7f,
  .component-ee54,
  .section-77e8,
  .large_4835,
  .highlight_0531 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .paper-498d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .thumbnail_fresh_1e5e {
    gap: var(--space-xs);
  }
  
  .hovered-ec87 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .solid_5fd7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .panel_af3d {
    width: 150px;
    height: 150px;
  }
  
  .menu-simple-9dd3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .badge-6547,
  .fast-693b,
  .prev_f16e,
  .active_basic_474e,
  .frame-simple-f52d,
  .upper_0a57,
  .card-north-cf71 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .dynamic-a08c {
    page-break-inside: avoid;
  }
}

/* css-noise: fbe4 */
.phantom-card-g9 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
