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

.outer-e2a9:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.mask-968b,
header,
.title_0ebe,
.wrapper-e115,
.fast-b88e,
.item_short_278c,
.heading-2fbe,
.search-b51c,
.summary_south_ac26 {
  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
   ============================================ */
.mask-968b {
  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);
}

.table-dim-9cdf {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.fixed_2013 {
  flex: 1;
}

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

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

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

.wide-d0e7.fn-active-db2b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.background-stale-537b {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary_c871 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .fixed_2013 {
    display: none;
  }
  
  .notification_336a {
    display: flex;
  }
  
  .table_08b2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tertiary_c871,
  .panel_106e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .background-stale-537b {
    position: relative;
  }
  
  .border_dark_2ae5 {
    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;
  }
  
  .right_230d[aria-expanded="true"] + .border_dark_2ae5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hot_ab35 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .shade-ef99 {
    gap: 8px;
  }
  
  .tertiary_c871 {
    display: none;
  }
  
  .panel_106e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .filter_6383 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.old_e051 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-soft-3152 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.list-1ef8 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .menu-simple-d469 {
    grid-template-columns: 1fr;
  }
  
  .backdrop-orange-de08 {
    font-size: 1.75rem;
  }
  
  .pro-c3a7 {
    order: -1;
    max-width: 100%;
  }
  
  .tabs_stone_244a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .backdrop-orange-de08 {
    font-size: 1.5rem;
  }
  
  .cold-5d06 {
    font-size: 1rem;
  }
  
  .surface_77f4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tabs_stone_244a {
    max-width: 250px;
  }
}

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

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

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

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

.next-191a:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.motion-60bc {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.background-small-01d4 {
  list-style: none;
  counter-reset: toc-counter;
}

.background-small-01d4 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.background-small-01d4 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);
}

.background-small-01d4 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;
}

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

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

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

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

.gallery-3d98 {
  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);
}

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

.dropdown-hovered-60eb {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container_2671 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) {
  .sidebar_glass_f5df {
    grid-template-columns: 1fr;
  }
  
  .shadow_7e01 {
    font-size: 1.75rem;
  }
  
  .glass_cffd {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shadow_7e01 {
    font-size: 1.5rem;
  }
  
  .glass_cffd h3 {
    font-size: 1.375rem;
  }
  
  .glass_cffd h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.carousel-static-50d1 {
  flex-shrink: 0;
}

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

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

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

.component-e4e2,
.active_lower_e610,
.north-b60e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.component-e4e2 thead,
.active_lower_e610 thead {
  background: var(--color-primary);
  color: white;
}

.component-e4e2 th,
.component-e4e2 td,
.active_lower_e610 th,
.active_lower_e610 td,
.north-b60e th,
.north-b60e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .component-e4e2 th,
  .component-e4e2 td,
  .active_lower_e610 th,
  .active_lower_e610 td,
  .north-b60e th,
  .north-b60e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .component-e4e2,
  .active_lower_e610,
  .north-b60e {
    min-width: 600px;
  }
}

.component-e4e2 th,
.active_lower_e610 th,
.north-b60e th {
  font-weight: 600;
}

.component-e4e2 tbody tr:hover,
.active_lower_e610 tbody tr:hover,
.north-b60e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tertiary-9b1b h4 {
  color: white;
}

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

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

.secondary_4259:last-child {
  border-bottom: none;
}

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

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

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

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

.section-7ff6:hover {
  text-decoration: underline;
}

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

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

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

.stale-7841 {
  font-weight: 600;
  color: white;
}

.hidden-first-a8df {
  list-style: none;
  padding: 0;
}

.hidden-first-a8df li {
  padding: var(--space-xs) 0;
}

.content_a658 {
  color: #4caf50;
}

.button_9f9f {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal_upper_d834 .carousel_e1fa {
  width: 100%;
  background: white;
}

.feature-rough-dfed .carousel_e1fa {
  color: #667eea;
}

.preview_d369 .carousel_e1fa {
  color: #f5576c;
}

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

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

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

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

.fixed-3ac3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .fixed-3ac3 {
    padding: var(--space-md);
  }
  
  .tall_0886 {
    padding: var(--space-md);
  }
  
  .under_13ae {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.action-0c4e li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.info_last_2300,
.photo-full-1c53,
.layout_3a12,
.outline-20b2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.shade-simple-24d6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.paragraph-d079 .aside_silver_5b82 {
  background: #e8f5e9;
  color: var(--color-success);
}

.item-b38f .aside_silver_5b82 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.footer-north-33d9 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.wide-ee95 {
  text-align: center;
}

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

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

.banner_234d .stale-7841 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.left-2d35 {
  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;
}

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

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

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

.surface_paper_a3f0 {
  text-align: right;
}

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

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

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

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

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

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

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

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

.primary-5470 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-thick-8700 {
  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);
}

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

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

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

.primary-851a,
.first_ae72 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.primary-851a h4,
.first_ae72 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.primary-851a ul,
.first_ae72 ul {
  list-style: none;
  padding: 0;
}

.primary-851a li,
.first_ae72 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.static-78b2 {
  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);
}

.column_3318 {
  font-style: italic;
}

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

.hard-3e97 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.warm-cd45 a:hover {
  color: white;
}

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

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

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

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

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

.card_b6ce a:hover {
  color: white;
}

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

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

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

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

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

.tall_7718 .icon-soft-3152 {
  color: #4caf50;
  font-size: 0.875rem;
}

.component-f4b5 {
  list-style: none;
  padding: 0;
}

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

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

.component-f4b5 a:hover {
  color: white;
}

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

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

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

.video_1da3 a:hover {
  color: white;
}

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

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

.detail-copper-f026 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.tag-4853 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;
}

.border-copper-42a5 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.border-copper-42a5:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cool-aa34 {
    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;
  }
  
  .backdrop-orange-de08 {
    font-size: 2rem;
  }
  
  .shadow_7e01 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .menu-simple-d469,
  .sidebar_glass_f5df {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .photo-old-368d,
  .over_6478,
  .text-blue-d475,
  .caption_light_2222,
  .tag_simple_b097,
  .wrapper_8b2d,
  .filter_a731,
  .simple_571c,
  .advanced_dca6 {
    grid-template-columns: 1fr;
  }
  
  .slow-0a08 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .heading-2fbe {
    padding: var(--space-lg) 0;
  }
  
  .background-small-01d4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .background-small-01d4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel_e1fa {
    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;
  }
  
  .slow-0a08 {
    grid-template-columns: 1fr;
  }
  
  .list-1ef8,
  .first-b01b,
  .highlight-68c7 {
    flex-direction: column;
    width: 100%;
  }
  
  .motion-60bc,
  .table_f013,
  .list-1ef8 .carousel_e1fa,
  .first-b01b .carousel_e1fa {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .backdrop-orange-de08 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .shadow_7e01 {
    font-size: 1.375rem;
  }
  
  .button-yellow-1a14 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .motion-baf2,
  .secondary-9fc8,
  .selected_5a89,
  .card_paper_87ed,
  .hover_fixed_0492 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .frame-fdd6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .description_black_3e11 {
    gap: var(--space-xs);
  }
  
  .old_e051 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .component-a760 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .banner_234d {
    width: 150px;
    height: 150px;
  }
  
  .button_3e21 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .mask-968b,
  .title_0ebe,
  .list-1ef8,
  .hard-3e97,
  .search-b51c,
  .summary_south_ac26,
  .notification_336a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .heading-2fbe {
    page-break-inside: avoid;
  }
}

/* css-noise: 4cf1 */
.promo-block-s4 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
