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

.alert_c575:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.active_f105,
header,
.carousel_fixed_f591,
.background-tiny-3ada,
.current-afb4,
.footer-362c,
.layout-c04a,
.border_focused_9553,
.steel_04e4 {
  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
   ============================================ */
.active_f105 {
  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);
}

.pagination-91d8 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.hidden-purple-4503 {
  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;
}

.lower-c296 {
  flex: 1;
}

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

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

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

.logo_pro_55fc.fn-active-9757 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny_2365 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .lower-c296 {
    display: none;
  }
  
  .description_south_1e31 {
    display: flex;
  }
  
  .hidden-purple-4503 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tiny_2365,
  .tertiary-1063 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .cool_d3a1 {
    position: relative;
  }
  
  .outline_d426 {
    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;
  }
  
  .text_6f0b[aria-expanded="true"] + .outline_d426 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tag_62b7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .right_6eea {
    gap: 8px;
  }
  
  .tiny_2365 {
    display: none;
  }
  
  .tertiary-1063 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .photo_2774 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .tertiary-1063 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .tertiary-1063 svg {
    width: 14px;
    height: 14px;
  }
  
  .accordion-paper-34e4 {
    gap: var(--space-sm);
  }
}

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

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

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

.current_391e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.small-9c25 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-bottom-a798 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tertiary_1d98 {
    grid-template-columns: 1fr;
  }
  
  .card-fresh-a78e {
    font-size: 1.75rem;
  }
  
  .small-9c25 {
    order: -1;
    max-width: 100%;
  }
  
  .input-bottom-a798 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .card-fresh-a78e {
    font-size: 1.5rem;
  }
  
  .item_pressed_c3b8 {
    font-size: 1rem;
  }
  
  .status_fc0e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .input-bottom-a798 {
    max-width: 250px;
  }
}

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

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

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

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

.box-east-6511:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.shade-bottom-ebae {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.purple_a99d li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.purple_a99d li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

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

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

.row-east-f230 {
  background: var(--color-bg-section);
}

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

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

.content-dim-b126 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-right-a023 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.component-right-a023 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) {
  .footer-liquid-9905 {
    grid-template-columns: 1fr;
  }
  
  .content-dim-b126 {
    font-size: 1.75rem;
  }
  
  .block_ad6b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .content-dim-b126 {
    font-size: 1.5rem;
  }
  
  .block_ad6b h3 {
    font-size: 1.375rem;
  }
  
  .block_ad6b h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.text-68f1 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.menu-in-a254 {
  flex-shrink: 0;
}

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

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

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

.article_b1c9,
.header-hot-ca4e,
.under-2638 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article_b1c9 thead,
.header-hot-ca4e thead {
  background: var(--color-primary);
  color: white;
}

.article_b1c9 th,
.article_b1c9 td,
.header-hot-ca4e th,
.header-hot-ca4e td,
.under-2638 th,
.under-2638 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .article_b1c9 th,
  .article_b1c9 td,
  .header-hot-ca4e th,
  .header-hot-ca4e td,
  .under-2638 th,
  .under-2638 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .article_b1c9,
  .header-hot-ca4e,
  .under-2638 {
    min-width: 600px;
  }
}

.article_b1c9 th,
.header-hot-ca4e th,
.under-2638 th {
  font-weight: 600;
}

.article_b1c9 tbody tr:hover,
.header-hot-ca4e tbody tr:hover,
.under-2638 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.form-stone-942f h4 {
  color: white;
}

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

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

.wood-ce50:last-child {
  border-bottom: none;
}

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

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

.icon-cool-6e81 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.video-gas-0ae5:hover {
  text-decoration: underline;
}

.active-glass-34e9 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.element-gold-1030 {
  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);
}

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

.clean-98e0 {
  font-weight: 600;
  color: white;
}

.link-focused-5d73 {
  list-style: none;
  padding: 0;
}

.link-focused-5d73 li {
  padding: var(--space-xs) 0;
}

.feature_801b {
  color: #4caf50;
}

.hover_bb38 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-bronze-8c1d {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.light_6ac2 .active-up-d76c {
  width: 100%;
  background: white;
}

.purple_3720 .active-up-d76c {
  color: #667eea;
}

.liquid_2916 .active-up-d76c {
  color: #f5576c;
}

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

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

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

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

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

.image-1f3c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .steel-b0fe {
    padding: var(--space-md);
  }
  
  .image-1f3c {
    padding: var(--space-md);
  }
  
  .narrow_6d14 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.row_easy_5aa7,
.action_c3ad,
.pattern-short-1615,
.highlight-gas-3662 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.nav-basic-1de9:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.text-550f {
  border-color: var(--color-success);
}

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

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

.text-550f .video-3768 {
  background: #e8f5e9;
  color: var(--color-success);
}

.large_ae8f .video-3768 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form_aa05 {
  text-align: center;
}

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

.progress-48d0 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.paragraph_bottom_103d .clean-98e0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.gradient-40e9 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.carousel-upper-d7a1 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.gas-131d {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.search-basic-5e7f {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.active_185d {
  text-align: right;
}

.active_185d .copper-a7b8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.prev-52b9 {
  background: #e8f5e9;
  color: #2e7d32;
}

.hard-2265 {
  background: #e3f2fd;
  color: #1565c0;
}

.top-83c2 {
  background: #fff3e0;
  color: #e65100;
}

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

.widget-blue-377b span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.notification-0ab5 {
  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);
}

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

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

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

.filter-895f strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full-1fd3,
.shadow-pressed-17b1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.full-1fd3 h4,
.shadow-pressed-17b1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.full-1fd3 ul,
.shadow-pressed-17b1 ul {
  list-style: none;
  padding: 0;
}

.full-1fd3 li,
.shadow-pressed-17b1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.logo-bright-8d2d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.button-east-a9a8 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.cold_2fbc a:hover {
  color: white;
}

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

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

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

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

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

.aside_gas_499b a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .caption-a033,
  .module-84c6 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.menu-medium-9cad {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.menu-medium-9cad .row_415b {
  color: #4caf50;
  font-size: 0.875rem;
}

.widget-c012 {
  list-style: none;
  padding: 0;
}

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

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

.widget-c012 a:hover {
  color: white;
}

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

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

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

.dropdown_old_f5eb a:hover {
  color: white;
}

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

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

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

.footer-bright-a59c {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.photo-ef89 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;
}

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

.frame-smooth-baed:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .photo_4a09 {
    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;
  }
  
  .card-fresh-a78e {
    font-size: 2rem;
  }
  
  .content-dim-b126 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tertiary_1d98,
  .footer-liquid-9905 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .stone_d3ab,
  .content_dark_54dd,
  .bottom-e8f8,
  .fluid_8fb7,
  .white-d6fd,
  .card-8900,
  .hot_153c,
  .caption-a033,
  .module-84c6 {
    grid-template-columns: 1fr;
  }
  
  .hidden-north-dcb5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .layout-c04a {
    padding: var(--space-lg) 0;
  }
  
  .purple_a99d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .purple_a99d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .active-up-d76c {
    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;
  }
  
  .hidden-north-dcb5 {
    grid-template-columns: 1fr;
  }
  
  .upper_e8cd,
  .hover-light-f456,
  .north-19b4 {
    flex-direction: column;
    width: 100%;
  }
  
  .shade-bottom-ebae,
  .paragraph_c562,
  .upper_e8cd .active-up-d76c,
  .hover-light-f456 .active-up-d76c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .card-fresh-a78e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .content-dim-b126 {
    font-size: 1.375rem;
  }
  
  .inner-c980 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container_aece,
  .hard-d38b,
  .info_b040,
  .pattern_hovered_185e,
  .secondary_center_0624 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .row-d12c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focus-under-675d {
    gap: var(--space-xs);
  }
  
  .current_391e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .element-gold-1030 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .paragraph_bottom_103d {
    width: 150px;
    height: 150px;
  }
  
  .progress-48d0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active_f105,
  .carousel_fixed_f591,
  .upper_e8cd,
  .info_dd30,
  .border_focused_9553,
  .steel_04e4,
  .description_south_1e31 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .layout-c04a {
    page-break-inside: avoid;
  }
}

/* css-noise: 8cb8 */
.widget-item-w4 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
