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

.rough-e236:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.button_north_8e62,
header,
.lite_5034,
.static_eac3,
.feature-dynamic-887d,
.paragraph-7200,
.background-plasma-2205,
.logo-narrow-7088,
.pattern_slow_b48e {
  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
   ============================================ */
.button_north_8e62 {
  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);
}

.breadcrumb-4a60 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

.backdrop-complex-48a1 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.hero-warm-ec89 {
  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;
}

.carousel_full_78c0 {
  flex: 1;
}

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

.advanced-00ef {
  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);
}

.advanced-00ef:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.advanced-00ef.fn-active-90bc {
  background: var(--color-primary);
  color: white;
}

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

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

.bronze-e480 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.secondary-d270 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .carousel_full_78c0::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .carousel_full_78c0.module_669d {
    display: block;
    right: 0;
  }
  
  .article-f564 {
    flex-direction: column;
    gap: 0;
  }
  
  .advanced-00ef {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .carousel_full_78c0::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;
  }
  
  .carousel_full_78c0.module_669d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .carousel_full_78c0 {
    display: none;
  }
  
  .chip-d87d {
    display: flex;
  }
  
  .hero-warm-ec89 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .secondary-d270,
  .wide_bf01 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .sidebar_9a04 {
    position: relative;
  }
  
  .prev_ccff {
    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;
  }
  
  .bronze-e480[aria-expanded="true"] + .prev_ccff {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .disabled-31bb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .purple_3efb {
    gap: 8px;
  }
  
  .secondary-d270 {
    display: none;
  }
  
  .wide_bf01 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .content_3565 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.label-e8ca svg {
  flex-shrink: 0;
}

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

.label-e8ca a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-south-bdac {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .table_6247 {
    grid-template-columns: 1fr;
  }
  
  .slow_2ee8 {
    font-size: 1.75rem;
  }
  
  .title-south-bdac {
    order: -1;
    max-width: 100%;
  }
  
  .hard_0b2b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slow_2ee8 {
    font-size: 1.5rem;
  }
  
  .pagination_wood_c30c {
    font-size: 1rem;
  }
  
  .disabled_yellow_25f5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hard_0b2b {
    max-width: 250px;
  }
}

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

.large-4aa5 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-first-52f2 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_1eb5 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) {
  .action_1fb6 {
    grid-template-columns: 1fr;
  }
  
  .layout-first-52f2 {
    font-size: 1.75rem;
  }
  
  .pro_1607 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .layout-first-52f2 {
    font-size: 1.5rem;
  }
  
  .pro_1607 h3 {
    font-size: 1.375rem;
  }
  
  .pro_1607 h4 {
    font-size: 1.125rem;
  }
}

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

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

.orange-7e99 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.active-motion-38fc {
  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;
}

.down-4d88 {
  flex-shrink: 0;
}

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

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

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

.white-2e14,
.iron-4628,
.light-48b2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.white-2e14 thead,
.iron-4628 thead {
  background: var(--color-primary);
  color: white;
}

.white-2e14 th,
.white-2e14 td,
.iron-4628 th,
.iron-4628 td,
.light-48b2 th,
.light-48b2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .white-2e14 th,
  .white-2e14 td,
  .iron-4628 th,
  .iron-4628 td,
  .light-48b2 th,
  .light-48b2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .white-2e14,
  .iron-4628,
  .light-48b2 {
    min-width: 600px;
  }
}

.white-2e14 th,
.iron-4628 th,
.light-48b2 th {
  font-weight: 600;
}

.white-2e14 tbody tr:hover,
.iron-4628 tbody tr:hover,
.light-48b2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.panel-9334 h4 {
  color: white;
}

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

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

.dark-1cd5:last-child {
  border-bottom: none;
}

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

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

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

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

.container-7dd4:hover {
  text-decoration: underline;
}

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

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

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

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

.popup-fresh-2e06 {
  list-style: none;
  padding: 0;
}

.popup-fresh-2e06 li {
  padding: var(--space-xs) 0;
}

.pattern-pink-9042 {
  color: #4caf50;
}

.component_1c14 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.primary-3c69 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.down_e6ef .thumbnail_7757 {
  width: 100%;
  background: white;
}

.small_2a39 .thumbnail_7757 {
  color: #667eea;
}

.link_773c .thumbnail_7757 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon_complex_d696,
.blue-914b,
.feature_silver_bd03,
.focus-6cf5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.form-large-1f18 {
  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) {
  .form-large-1f18 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.label-stale-c786 {
  border-color: var(--color-success);
}

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

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

.label-stale-c786 .north-d958 {
  background: #e8f5e9;
  color: var(--color-success);
}

.hard_97fa .north-d958 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.feature-huge-200c {
  margin-top: var(--space-xxl);
}

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

.preview-fluid-c533 {
  text-align: center;
}

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

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

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

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

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

.tabs-plasma-6c70 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-brown-357d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.preview-7c62 {
  text-align: right;
}

.preview-7c62 .table-full-38fb {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.caption-0647 {
  background: #e8f5e9;
  color: #2e7d32;
}

.pro-f175 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-df31[aria-expanded="true"] .component_6e1a {
  transform: rotate(180deg);
}

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

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

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

.nav-2d52 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.pattern-04a0,
.wrapper-c8a9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pattern-04a0 h4,
.wrapper-c8a9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pattern-04a0 ul,
.wrapper-c8a9 ul {
  list-style: none;
  padding: 0;
}

.pattern-04a0 li,
.wrapper-c8a9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden_b223 {
  font-style: italic;
}

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

.iron-34e3 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fresh-3b04 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fresh-3b04 li {
  margin-bottom: var(--space-xs);
}

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

.fresh-3b04 a:hover {
  color: white;
}

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

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

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

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

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

.card_121f a:hover {
  color: white;
}

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

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

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

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

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

.video_full_e947 .alert_black_4a2b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.element_clean_21ea a:hover {
  color: white;
}

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

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

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

.gas_4470 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .out-7420 {
    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;
  }
  
  .slow_2ee8 {
    font-size: 2rem;
  }
  
  .layout-first-52f2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .table_6247,
  .action_1fb6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .avatar_07de,
  .texture_b76b,
  .tall-9863,
  .caption-656d,
  .status-easy-a092,
  .notice_next_fdbe,
  .nav-cool-b2e0,
  .in_24da,
  .tooltip-fc1a {
    grid-template-columns: 1fr;
  }
  
  .video-ced5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .background-plasma-2205 {
    padding: var(--space-lg) 0;
  }
  
  .title_9536 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .title_9536 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .thumbnail_7757 {
    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;
  }
  
  .video-ced5 {
    grid-template-columns: 1fr;
  }
  
  .fluid_3fd9,
  .liquid-ae5b,
  .primary-d91f {
    flex-direction: column;
    width: 100%;
  }
  
  .photo_40b7,
  .red_41cc,
  .fluid_3fd9 .thumbnail_7757,
  .liquid-ae5b .thumbnail_7757 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slow_2ee8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .layout-first-52f2 {
    font-size: 1.375rem;
  }
  
  .middle_1325 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .solid-bd50,
  .next_338b,
  .current_4389,
  .liquid_7cb3,
  .outline-140d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .form-large-1f18 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .light_ad96 {
    gap: var(--space-xs);
  }
  
  .label-e8ca {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .rough_e160 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .yellow_0e20 {
    width: 150px;
    height: 150px;
  }
  
  .overlay_11c9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button_north_8e62,
  .lite_5034,
  .fluid_3fd9,
  .iron-34e3,
  .logo-narrow-7088,
  .pattern_slow_b48e,
  .chip-d87d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .background-plasma-2205 {
    page-break-inside: avoid;
  }
}

/* css-noise: 543d */
.widget-item-v3 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.0;
}
