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

.gallery-hovered-7a12:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.dropdown-down-3938,
header,
.label_6d07,
.avatar_04b1,
.mask_bright_e99d,
.advanced-9bca,
.menu_2aa7,
.under-b52f,
.outer-5af8 {
  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
   ============================================ */
.dropdown-down-3938 {
  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);
}

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

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

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

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

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

.form-dim-1d9e img {
  height: 36px;
  width: auto;
  display: block;
}

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

.simple_7a89 {
  flex: 1;
}

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

.module-brown-2a84 {
  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);
}

.module-brown-2a84:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.module-brown-2a84.fn-active-ffa5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.nav-4232 {
  position: relative;
}

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

.link-b3c3 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.shade_b635 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.modal-8e82[aria-expanded="true"] .outer_5934:nth-child(2) {
  opacity: 0;
}

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

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

  .simple_7a89::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .simple_7a89.action_8755 {
    display: block;
    right: 0;
  }
  
  .media_bright_cafb {
    flex-direction: column;
    gap: 0;
  }
  
  .module-brown-2a84 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .simple_7a89::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;
  }
  
  .simple_7a89.action_8755::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .simple_7a89 {
    display: none;
  }
  
  .modal-8e82 {
    display: flex;
  }
  
  .highlight-e830 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .shade_b635,
  .narrow-a6d3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav-4232 {
    position: relative;
  }
  
  .text_8014 {
    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;
  }
  
  .link-b3c3[aria-expanded="true"] + .text_8014 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pink-308d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .input_yellow_cc55 {
    gap: 8px;
  }
  
  .shade_b635 {
    display: none;
  }
  
  .narrow-a6d3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .form-dim-1d9e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.accent-6335 svg {
  flex-shrink: 0;
}

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

.accent-6335 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.liquid-987d {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.background-simple-2771 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.background-simple-2771 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.info-under-7831 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .wrapper-mini-835c {
    grid-template-columns: 1fr;
  }
  
  .widget_active_70d7 {
    font-size: 1.75rem;
  }
  
  .small_04aa {
    order: -1;
    max-width: 100%;
  }
  
  .label_82cd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .widget_active_70d7 {
    font-size: 1.5rem;
  }
  
  .article-large-3b41 {
    font-size: 1rem;
  }
  
  .over_7ea9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .label_82cd {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.image-old-1673 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.dynamic-24e9 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.dynamic-24e9 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);
}

.dynamic-24e9 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;
}

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

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

.cold-4ae8 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass_fa06 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) {
  .current-8f4b {
    grid-template-columns: 1fr;
  }
  
  .dropdown-5496 {
    font-size: 1.75rem;
  }
  
  .center-fae5 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dropdown-5496 {
    font-size: 1.5rem;
  }
  
  .center-fae5 h3 {
    font-size: 1.375rem;
  }
  
  .center-fae5 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.section_pressed_6af7 {
  flex-shrink: 0;
}

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

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

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

.status_clean_530f,
.focused_ff15,
.status-copper-8e7c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.status_clean_530f thead,
.focused_ff15 thead {
  background: var(--color-primary);
  color: white;
}

.status_clean_530f th,
.status_clean_530f td,
.focused_ff15 th,
.focused_ff15 td,
.status-copper-8e7c th,
.status-copper-8e7c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .status_clean_530f th,
  .status_clean_530f td,
  .focused_ff15 th,
  .focused_ff15 td,
  .status-copper-8e7c th,
  .status-copper-8e7c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .status_clean_530f,
  .focused_ff15,
  .status-copper-8e7c {
    min-width: 600px;
  }
}

.status_clean_530f th,
.focused_ff15 th,
.status-copper-8e7c th {
  font-weight: 600;
}

.status_clean_530f tbody tr:hover,
.focused_ff15 tbody tr:hover,
.status-copper-8e7c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.bright-e85b h4 {
  color: white;
}

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

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

.cold-8b0b:last-child {
  border-bottom: none;
}

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

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

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

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

.banner-next-5eaa:hover {
  text-decoration: underline;
}

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

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

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

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

.pink-4d89 {
  list-style: none;
  padding: 0;
}

.pink-4d89 li {
  padding: var(--space-xs) 0;
}

.module-713e {
  color: #4caf50;
}

.huge_b63d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-blue-9ff1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.secondary-blue-9ff1 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.secondary-blue-9ff1 li {
  padding: var(--space-xs) 0;
  color: white;
}

.secondary-blue-9ff1 .component_hovered_410e {
  width: 100%;
  background: white;
}

.module_wood_2752 .component_hovered_410e {
  color: #667eea;
}

.focus_first_0b45 .component_hovered_410e {
  color: #f5576c;
}

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

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

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

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

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

.video_right_c22c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .slow_8c4c {
    padding: var(--space-md);
  }
  
  .video_right_c22c {
    padding: var(--space-md);
  }
  
  .background_daa5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.current-4d15 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.backdrop-selected-283c,
.card-2ebf,
.soft_9748,
.green-e13c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.grid-center-9a0f {
  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) {
  .grid-center-9a0f {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.module_2191 .element_da1d {
  background: #e8f5e9;
  color: var(--color-success);
}

.carousel_f162 .element_da1d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-cb18 {
  text-align: center;
}

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

.sort-0be7 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.frame_east_134a .dark_0973 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.item-17c9 {
  margin-bottom: var(--space-xl);
}

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

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

.over-890d {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.simple-7076 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.primary_7233 {
  text-align: right;
}

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

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

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

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

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

.shade-down-785d {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.right-62cf {
  background: #e8f5e9;
  color: #2e7d32;
}

.button-f9fd {
  background: #e3f2fd;
  color: #1565c0;
}

.prev-3ea0 {
  background: #fff3e0;
  color: #e65100;
}

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

.article-warm-11a6 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.gallery-top-6391 strong {
  color: var(--color-primary);
}

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

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

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

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

.header_3d65 {
  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_3d65:hover {
  background: var(--color-bg-alt);
}

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

.header_3d65[aria-expanded="true"] .hard-b942 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.panel-left-bbbb {
  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);
}

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

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

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

.lower-45ae,
.module_bcbb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.lower-45ae h4,
.module_bcbb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.lower-45ae ul,
.module_bcbb ul {
  list-style: none;
  padding: 0;
}

.lower-45ae li,
.module_bcbb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fixed-2f23 {
  font-style: italic;
}

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

.message-paper-8f06 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-b9c7 a:hover {
  color: white;
}

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

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

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

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

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

.solid_1942 a:hover {
  color: white;
}

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

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

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

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

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

.pressed-fc3f .chip-0875 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.list_3a12 a:hover {
  color: white;
}

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

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

.fresh-0b23 a {
  color: #b0b0b0;
  text-decoration: none;
}

.fresh-0b23 a:hover {
  color: white;
}

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

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

.pagination-orange-08aa a {
  color: #4caf50;
  text-decoration: none;
}

.bronze-197c {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .paragraph_paper_e724 {
    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;
  }
  
  .widget_active_70d7 {
    font-size: 2rem;
  }
  
  .dropdown-5496 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wrapper-mini-835c,
  .current-8f4b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .east_cfcb,
  .table_3001,
  .input-ad04,
  .preview-4b06,
  .feature_upper_2f0f,
  .brown-dfdf,
  .avatar_stone_e824,
  .tertiary_993f,
  .primary-7b36 {
    grid-template-columns: 1fr;
  }
  
  .shadow-ec53 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .menu_2aa7 {
    padding: var(--space-lg) 0;
  }
  
  .dynamic-24e9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dynamic-24e9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .component_hovered_410e {
    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;
  }
  
  .shadow-ec53 {
    grid-template-columns: 1fr;
  }
  
  .info-under-7831,
  .blue_152f,
  .active-selected-f20e {
    flex-direction: column;
    width: 100%;
  }
  
  .image-old-1673,
  .active-eea0,
  .info-under-7831 .component_hovered_410e,
  .blue_152f .component_hovered_410e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .widget_active_70d7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dropdown-5496 {
    font-size: 1.375rem;
  }
  
  .tertiary-e994 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tall-0996,
  .grid_ff8a,
  .status_a654,
  .paragraph_397f,
  .form_orange_8101 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid-center-9a0f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .bronze-8792 {
    gap: var(--space-xs);
  }
  
  .accent-6335 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .north-eaa0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .frame_east_134a {
    width: 150px;
    height: 150px;
  }
  
  .sort-0be7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dropdown-down-3938,
  .label_6d07,
  .info-under-7831,
  .message-paper-8f06,
  .under-b52f,
  .outer-5af8,
  .modal-8e82 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .menu_2aa7 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1368 */
.phantom-card-k0 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
