/* ============================================
   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)
   ============================================ */
.article-mini-5a43 {
  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;
}

.article-mini-5a43:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.basic_28f3,
header,
.footer-b7e6,
.iron-8573,
.breadcrumb_3714,
.box-8fb5,
.header_rough_bb89,
.backdrop_dynamic_bd42,
.alert_south_580d {
  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
   ============================================ */
.basic_28f3 {
  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);
}

.outline-copper-41d6 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.center-5d3a img {
  height: 36px;
  width: auto;
  display: block;
}

.bright-26ea {
  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;
}

.modal_green_92ea {
  flex: 1;
}

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

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

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

.paragraph_990f.fn-active-f410 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.stale-454d {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.list_02e2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.form-next-064f[aria-expanded="true"] .heading_next_0259:nth-child(2) {
  opacity: 0;
}

.form-next-064f[aria-expanded="true"] .heading_next_0259:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .modal_green_92ea {
    display: none;
  }
  
  .form-next-064f {
    display: flex;
  }
  
  .bright-26ea {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .list_02e2,
  .layout_silver_9cbd {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .stale-454d {
    position: relative;
  }
  
  .top-ec0e {
    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;
  }
  
  .table_a1bc[aria-expanded="true"] + .top-ec0e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pro_eb1c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .chip-6217 {
    gap: 8px;
  }
  
  .list_02e2 {
    display: none;
  }
  
  .layout_silver_9cbd {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .center-5d3a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.down_9a1c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption-8e04 {
  display: flex;
  gap: var(--space-sm);
}

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

.active-fixed-5898 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.active-fixed-5898 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.feature-473c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.link-static-4c4d {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-purple-3eed {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .pro-d480 {
    grid-template-columns: 1fr;
  }
  
  .orange_2e08 {
    font-size: 1.75rem;
  }
  
  .link-static-4c4d {
    order: -1;
    max-width: 100%;
  }
  
  .alert-purple-3eed {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .orange_2e08 {
    font-size: 1.5rem;
  }
  
  .old-13c5 {
    font-size: 1rem;
  }
  
  .right_2687 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .alert-purple-3eed {
    max-width: 250px;
  }
}

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

.solid-0fb1 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.aside-soft-1c7f {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.overlay-small-822c {
  list-style: none;
  counter-reset: toc-counter;
}

.overlay-small-822c li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.overlay-small-822c 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);
}

.overlay-small-822c 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;
}

.overlay-small-822c li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.logo-3ba5 {
  background: var(--color-bg-section);
}

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

.popup-e80f {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.highlight-small-5140 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.highlight-small-5140 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);
}

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

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

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

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

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

.highlight-small-5140 strong {
  font-weight: 600;
  color: var(--color-text);
}

.highlight-small-5140 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.highlight-small-5140 a:hover {
  color: var(--color-primary-dark);
}

.element-green-ac23 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.element-green-ac23 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) {
  .label-soft-f90b {
    grid-template-columns: 1fr;
  }
  
  .description_206b {
    font-size: 1.75rem;
  }
  
  .highlight-small-5140 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .description_206b {
    font-size: 1.5rem;
  }
  
  .highlight-small-5140 h3 {
    font-size: 1.375rem;
  }
  
  .highlight-small-5140 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.accordion_0e9c {
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .bright-def0 {
    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-59c4,
.thumbnail-wide-ac14,
.alert_9fd8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.status-59c4 thead,
.thumbnail-wide-ac14 thead {
  background: var(--color-primary);
  color: white;
}

.status-59c4 th,
.status-59c4 td,
.thumbnail-wide-ac14 th,
.thumbnail-wide-ac14 td,
.alert_9fd8 th,
.alert_9fd8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .status-59c4 th,
  .status-59c4 td,
  .thumbnail-wide-ac14 th,
  .thumbnail-wide-ac14 td,
  .alert_9fd8 th,
  .alert_9fd8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .status-59c4,
  .thumbnail-wide-ac14,
  .alert_9fd8 {
    min-width: 600px;
  }
}

.status-59c4 th,
.thumbnail-wide-ac14 th,
.alert_9fd8 th {
  font-weight: 600;
}

.status-59c4 tbody tr:hover,
.thumbnail-wide-ac14 tbody tr:hover,
.alert_9fd8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.next_5b18 h4 {
  color: white;
}

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

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

.header-copper-b491:last-child {
  border-bottom: none;
}

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

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

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

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

.pattern-dirty-55d1:hover {
  text-decoration: underline;
}

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

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

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

.active-453a {
  font-weight: 600;
  color: white;
}

.pink-3ff6 {
  list-style: none;
  padding: 0;
}

.pink-3ff6 li {
  padding: var(--space-xs) 0;
}

.card_huge_a812 {
  color: #4caf50;
}

.form-37b8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-inner-3b1c h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-d0f5 .fluid_9744 {
  width: 100%;
  background: white;
}

.accent_ed17 .fluid_9744 {
  color: #667eea;
}

.caption_dynamic_5f26 .fluid_9744 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .fresh-b2d7 {
    padding: var(--space-md);
  }
  
  .paragraph_west_dcdb {
    padding: var(--space-md);
  }
  
  .input_dynamic_02c7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.image-fixed-4cf8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.focus_hard_91a6,
.full_f221,
.cold-43c5,
.narrow-3511 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.copper-6ca8 {
  border-color: var(--color-success);
}

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

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

.copper-6ca8 .active_8324 {
  background: #e8f5e9;
  color: var(--color-success);
}

.detail-cb14 .active_8324 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.background-narrow-768d {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.media-51c1 {
  margin-top: var(--space-xxl);
}

.popup-red-9873 {
  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);
}

.old-345a {
  text-align: center;
}

.pink-65db {
  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);
}

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

.pink-65db .active-453a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.aside-1f57 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny_5588 {
  text-align: right;
}

.tiny_5588 .tabs-left-6202 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.dirty-ae82 {
  background: #e8f5e9;
  color: #2e7d32;
}

.hidden_c133 {
  background: #e3f2fd;
  color: #1565c0;
}

.focused-0ba9 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.accent-75b6 strong {
  color: var(--color-primary);
}

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

.feature-out-1a00 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.gallery-gold-988b {
  max-width: 900px;
  margin: 0 auto;
}

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

.black-61da {
  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);
}

.black-61da:hover {
  background: var(--color-bg-alt);
}

.message-green-a289 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.black-61da[aria-expanded="true"] .message-green-a289 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.status-advanced-fe23,
.icon-hovered-96fb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.status-advanced-fe23 h4,
.icon-hovered-96fb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.status-advanced-fe23 ul,
.icon-hovered-96fb ul {
  list-style: none;
  padding: 0;
}

.status-advanced-fe23 li,
.icon-hovered-96fb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.orange-4c38 {
  font-style: italic;
}

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

.label-cool-dae6 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic_4f9c a:hover {
  color: white;
}

.accent-bottom-6e35 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.accent-bottom-6e35 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);
}

.accent-bottom-6e35 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.footer-8669 a:hover {
  color: white;
}

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

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

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

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

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

.dirty-1cb5 .caption-8e04 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.cool_7828 a:hover {
  color: white;
}

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

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

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

.video_right_a45c a:hover {
  color: white;
}

.yellow-47ad {
  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);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .yellow-47ad {
    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;
  }
  
  .orange_2e08 {
    font-size: 2rem;
  }
  
  .description_206b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pro-d480,
  .label-soft-f90b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .purple_2d73,
  .banner_ef21,
  .image_b4db,
  .pink_788e,
  .smooth-e6c4,
  .footer_cool_d5c8,
  .orange_665c,
  .article-93bb,
  .motion_3678 {
    grid-template-columns: 1fr;
  }
  
  .banner_dynamic_0058 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .header_rough_bb89 {
    padding: var(--space-lg) 0;
  }
  
  .overlay-small-822c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .overlay-small-822c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .fluid_9744 {
    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;
  }
  
  .banner_dynamic_0058 {
    grid-template-columns: 1fr;
  }
  
  .feature-473c,
  .block-gas-be36,
  .backdrop-under-42b2 {
    flex-direction: column;
    width: 100%;
  }
  
  .hard-dbef,
  .message-fc41,
  .feature-473c .fluid_9744,
  .block-gas-be36 .fluid_9744 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .orange_2e08 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .description_206b {
    font-size: 1.375rem;
  }
  
  .background_mini_d9e5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .list-silver-f7dd,
  .fast-6c41,
  .element-over-b5cc,
  .thumbnail_fluid_8cb7,
  .main-7d9f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .cold-bc0a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .container-pro-4eee {
    gap: var(--space-xs);
  }
  
  .down_9a1c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .first-5445 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pink-65db {
    width: 150px;
    height: 150px;
  }
  
  .sidebar_middle_7b72 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .basic_28f3,
  .footer-b7e6,
  .feature-473c,
  .label-cool-dae6,
  .backdrop_dynamic_bd42,
  .alert_south_580d,
  .form-next-064f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .header_rough_bb89 {
    page-break-inside: avoid;
  }
}

/* css-noise: a3fe */
.shadow-element-x2 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.0;
}
