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

.tiny_83bc:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.first_ef15,
header,
.breadcrumb-bronze-7b82,
.paragraph_hard_51e5,
.badge-6413,
.fast_e7b4,
.badge_c2ef,
.carousel-copper-3c58,
.complex_a1e7 {
  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
   ============================================ */
.first_ef15 {
  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);
}

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

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

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

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

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

.selected_a99b img {
  height: 36px;
  width: auto;
  display: block;
}

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

.current-112f {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink-6c72 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .current-112f {
    display: none;
  }
  
  .hidden-e894 {
    display: flex;
  }
  
  .pagination_41d1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pink-6c72,
  .accent_efc9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .highlight_3f8b {
    position: relative;
  }
  
  .fluid_cfe3 {
    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;
  }
  
  .card_easy_54fb[aria-expanded="true"] + .fluid_cfe3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .center_12ec {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .modal_3a73 {
    gap: 8px;
  }
  
  .pink-6c72 {
    display: none;
  }
  
  .accent_efc9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .selected_a99b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.lower-dfdd svg {
  flex-shrink: 0;
}

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

.lower-dfdd a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.secondary-orange-1e3a {
  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) {
  .secondary-orange-1e3a {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .secondary-orange-1e3a {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

.badge-north-63b9 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .label_selected_1b04 {
    grid-template-columns: 1fr;
  }
  
  .secondary-orange-1e3a {
    font-size: 1.75rem;
  }
  
  .badge-north-63b9 {
    order: -1;
    max-width: 100%;
  }
  
  .search_dynamic_acce {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .secondary-orange-1e3a {
    font-size: 1.5rem;
  }
  
  .slider_48e5 {
    font-size: 1rem;
  }
  
  .shadow_b68c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .search_dynamic_acce {
    max-width: 250px;
  }
}

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

.selected-57aa {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.chip-up-237c {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow-4a05 {
  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);
}

.carousel_orange_7be0 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

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

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

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

.text-496a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.text-496a 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);
}

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

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

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

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

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

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

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

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

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

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

.summary_east_456d 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) {
  .widget_in_f048 {
    grid-template-columns: 1fr;
  }
  
  .carousel_orange_7be0 {
    font-size: 1.75rem;
  }
  
  .text-496a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .carousel_orange_7be0 {
    font-size: 1.5rem;
  }
  
  .text-496a h3 {
    font-size: 1.375rem;
  }
  
  .text-496a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.red_15ff {
  flex-shrink: 0;
}

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

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

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

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

.motion_ed2e thead,
.hover_lower_9672 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.motion_ed2e th,
.hover_lower_9672 th,
.hidden_north_674c th {
  font-weight: 600;
}

.motion_ed2e tbody tr:hover,
.hover_lower_9672 tbody tr:hover,
.hidden_north_674c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.sort_static_6203 h4 {
  color: white;
}

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

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

.title-7edd:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.modal-plasma-c63d {
  font-weight: 600;
  color: white;
}

.wrapper-ec53 {
  list-style: none;
  padding: 0;
}

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

.tooltip_fb3a {
  color: #4caf50;
}

.footer-next-90cc {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid_3875 .modal_cde9 {
  width: 100%;
  background: white;
}

.layout-7496 .modal_cde9 {
  color: #667eea;
}

.secondary-under-da22 .modal_cde9 {
  color: #f5576c;
}

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

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

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

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

.pagination-fresh-2875 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.primary-yellow-a6ff {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .pagination-fresh-2875 {
    padding: var(--space-md);
  }
  
  .primary-yellow-a6ff {
    padding: var(--space-md);
  }
  
  .copper_ac5e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tertiary-dark-abbd,
.component_2f71,
.gradient_dynamic_8903,
.pink_ab2b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-cold-d629 {
  border-color: var(--color-warning);
}

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

.row-d88a .west_619b {
  background: #e8f5e9;
  color: var(--color-success);
}

.texture-cold-d629 .west_619b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.liquid_de47 {
  text-align: center;
}

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

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

.fresh_b384 .modal-plasma-c63d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.medium-10c9 {
  border: 2px solid #4caf50;
}

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

.photo-8cb9 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.out-1ae6 {
  text-align: right;
}

.out-1ae6 .dynamic-bc5d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.title-east-8b73 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header_simple_058c[aria-expanded="true"] .section-c68b {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dirty_95dc ul,
.list_first_8057 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.static_951b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.narrow-9cc8 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.narrow-9cc8 li {
  margin-bottom: var(--space-xs);
}

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

.narrow-9cc8 a:hover {
  color: white;
}

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

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

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

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

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

.article_871b a:hover {
  color: white;
}

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

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

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

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

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

.hard_97c3 .sidebar_ae95 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.disabled_outer_99a6 a:hover {
  color: white;
}

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

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

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

.item_9398 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .mask_paper_c8d3 {
    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;
  }
  
  .secondary-orange-1e3a {
    font-size: 2rem;
  }
  
  .carousel_orange_7be0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .label_selected_1b04,
  .widget_in_f048 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .notification_7810,
  .link-bf64,
  .component_south_6f97,
  .main-light-c42d,
  .upper_c740,
  .table_8662,
  .accordion-black-d85b,
  .selected_f395,
  .accent_fbbe {
    grid-template-columns: 1fr;
  }
  
  .notification_d2ce {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .badge_c2ef {
    padding: var(--space-lg) 0;
  }
  
  .heading_fresh_86ba li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .heading_fresh_86ba li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .modal_cde9 {
    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;
  }
  
  .notification_d2ce {
    grid-template-columns: 1fr;
  }
  
  .large_440b,
  .component-clean-cc87,
  .tag_lite_98d2 {
    flex-direction: column;
    width: 100%;
  }
  
  .outer_9e51,
  .chip-up-237c,
  .large_440b .modal_cde9,
  .component-clean-cc87 .modal_cde9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .secondary-orange-1e3a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .carousel_orange_7be0 {
    font-size: 1.375rem;
  }
  
  .icon-active-ece6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .active_6567,
  .hover-0037,
  .alert_black_9671,
  .last_6494,
  .fixed-54a7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .banner_focused_aad9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wood_32cb {
    gap: var(--space-xs);
  }
  
  .lower-dfdd {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gold_a88e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .fresh_b384 {
    width: 150px;
    height: 150px;
  }
  
  .heading-complex-2437 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .first_ef15,
  .breadcrumb-bronze-7b82,
  .large_440b,
  .accent-c5c3,
  .carousel-copper-3c58,
  .complex_a1e7,
  .hidden-e894 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .badge_c2ef {
    page-break-inside: avoid;
  }
}

/* css-noise: 1a72 */
.ghost-box-p2 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
