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

.block_d810:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.status-30b7,
header,
.plasma_c23c,
.wrapper-23b0,
.main_white_03d9,
.frame_dynamic_8fad,
.search-fab3,
.smooth_95f5,
.message-57f5 {
  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
   ============================================ */
.status-30b7 {
  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);
}

.tag-2bdc {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.status-30b7.form-stone-3a82 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.short-1091 img {
  height: 36px;
  width: auto;
  display: block;
}

.block-pressed-e2a1 {
  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;
}

.thumbnail-iron-3a26 {
  flex: 1;
}

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

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

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

.video_fixed_dcec.fn-active-c147 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.item-7a67 {
  position: relative;
}

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

.module-medium-01e0 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.pro-2477 svg {
  flex-shrink: 0;
}

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

.outline-0f24: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);
}

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

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

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

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

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

.hot_6fc7[aria-expanded="true"] .nav-4bb8:nth-child(2) {
  opacity: 0;
}

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

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

  .thumbnail-iron-3a26::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .thumbnail-iron-3a26.input_east_9180 {
    display: block;
    right: 0;
  }
  
  .small-8800 {
    flex-direction: column;
    gap: 0;
  }
  
  .video_fixed_dcec {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .thumbnail-iron-3a26::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;
  }
  
  .thumbnail-iron-3a26.input_east_9180::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .thumbnail-iron-3a26 {
    display: none;
  }
  
  .hot_6fc7 {
    display: flex;
  }
  
  .block-pressed-e2a1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pro-2477,
  .outline-0f24 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .item-7a67 {
    position: relative;
  }
  
  .backdrop_focused_f33f {
    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;
  }
  
  .module-medium-01e0[aria-expanded="true"] + .backdrop_focused_f33f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .banner_2cd8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tooltip_short_9f5c {
    gap: 8px;
  }
  
  .pro-2477 {
    display: none;
  }
  
  .outline-0f24 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .short-1091 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .outline-0f24 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .outline-0f24 svg {
    width: 14px;
    height: 14px;
  }
  
  .accordion-silver-f841 {
    gap: var(--space-sm);
  }
}

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

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

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

.nav_hard_26aa svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.grid-e4bf a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.current-8f34 {
  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;
}

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

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

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

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

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

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

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

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

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

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

.image-mini-0d7d {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

.focus-complex-8d51 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .center-6927 {
    grid-template-columns: 1fr;
  }
  
  .section_south_dfaa {
    font-size: 1.75rem;
  }
  
  .pink-fd9d {
    order: -1;
    max-width: 100%;
  }
  
  .fluid_308f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section_south_dfaa {
    font-size: 1.5rem;
  }
  
  .article_b993 {
    font-size: 1rem;
  }
  
  .grid-e4bf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .fluid_308f {
    max-width: 250px;
  }
}

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

.plasma-1e27 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.detail-28b7 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-gold-684e {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.primary-3d15 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.primary-3d15 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);
}

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

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

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

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

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

.primary-3d15 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

.tooltip_north_412d 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) {
  .center_8096 {
    grid-template-columns: 1fr;
  }
  
  .slider-e94f {
    font-size: 1.75rem;
  }
  
  .primary-3d15 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .slider-e94f {
    font-size: 1.5rem;
  }
  
  .primary-3d15 h3 {
    font-size: 1.375rem;
  }
  
  .primary-3d15 h4 {
    font-size: 1.125rem;
  }
}

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

.input-5c6c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.description-mini-45bb {
  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;
}

.chip-2c9f {
  flex-shrink: 0;
}

.carousel-thick-1fae strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.item-26cc,
.badge_f234,
.sort_2d08 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.item-26cc thead,
.badge_f234 thead {
  background: var(--color-primary);
  color: white;
}

.item-26cc th,
.item-26cc td,
.badge_f234 th,
.badge_f234 td,
.sort_2d08 th,
.sort_2d08 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .item-26cc th,
  .item-26cc td,
  .badge_f234 th,
  .badge_f234 td,
  .sort_2d08 th,
  .sort_2d08 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .item-26cc,
  .badge_f234,
  .sort_2d08 {
    min-width: 600px;
  }
}

.item-26cc th,
.badge_f234 th,
.sort_2d08 th {
  font-weight: 600;
}

.item-26cc tbody tr:hover,
.badge_f234 tbody tr:hover,
.sort_2d08 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.highlight-rough-48d6 h4 {
  color: white;
}

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

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

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

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

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

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

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

.image-dbcc:hover {
  text-decoration: underline;
}

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

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

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

.header-soft-4d3e {
  font-weight: 600;
  color: white;
}

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

.button_144d li {
  padding: var(--space-xs) 0;
}

.yellow_41ad {
  color: #4caf50;
}

.component-588f {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .secondary-next-34ec {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.header-soft-4d3e {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_043e .small_860c {
  width: 100%;
  background: white;
}

.main-c274 .small_860c {
  color: #667eea;
}

.progress-stone-eba0 .small_860c {
  color: #f5576c;
}

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

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

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

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

.module-out-821a h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .module-out-821a {
    padding: var(--space-md);
  }
  
  .article-b43c {
    padding: var(--space-md);
  }
  
  .link_over_0acc {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.section-full-4cd5 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.carousel_3738,
.accordion_44b8,
.heading-small-0882,
.block-1d51 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.modal-center-75de h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.gold-b421 .gold-a4fe {
  background: #e8f5e9;
  color: var(--color-success);
}

.widget_7c8d .gold-a4fe {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-a2bd {
  text-align: center;
}

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

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

.hovered_9a5f .header-soft-4d3e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.border-inner-953a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.surface-1f4f {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.current-35d6 {
  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;
}

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

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

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

.popup_38f5 {
  text-align: right;
}

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

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

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

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

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

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

.link-3e4d {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.icon-75bf {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge_a1de,
.accent-25ee {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.huge_a1de h4,
.accent-25ee h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.huge_a1de ul,
.accent-25ee ul {
  list-style: none;
  padding: 0;
}

.huge_a1de li,
.accent-25ee li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.alert-liquid-b6d4 {
  font-style: italic;
}

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

.element-cool-77af {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-fresh-4c38 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-fresh-4c38 li {
  margin-bottom: var(--space-xs);
}

.icon-fresh-4c38 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.icon-fresh-4c38 a:hover {
  color: white;
}

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

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

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

.progress-copper-42c1 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.progress-copper-42c1 a:hover {
  color: white;
}

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

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

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

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

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

.accordion-c926 .frame-a3a6 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.thick_cdc3 a:hover {
  color: white;
}

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

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

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

.mini_dd1a a:hover {
  color: white;
}

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

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

.input-right-a053 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.accordion-39e8 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;
}

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

.wrapper-outer-b96f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sidebar_white_c086 {
    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;
  }
  
  .section_south_dfaa {
    font-size: 2rem;
  }
  
  .slider-e94f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .center-6927,
  .center_8096 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary-next-34ec,
  .modal_692f,
  .button-19c2,
  .focused_3f74,
  .widget_2708,
  .highlight_inner_1d21,
  .component_7a94,
  .center_0b40,
  .last_d17c {
    grid-template-columns: 1fr;
  }
  
  .banner-9828 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .search-fab3 {
    padding: var(--space-lg) 0;
  }
  
  .smooth_b0e4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .smooth_b0e4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .small_860c {
    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-9828 {
    grid-template-columns: 1fr;
  }
  
  .button_hard_f7af,
  .silver-8524,
  .huge_dd43 {
    flex-direction: column;
    width: 100%;
  }
  
  .section_1b45,
  .detail-28b7,
  .button_hard_f7af .small_860c,
  .silver-8524 .small_860c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .section_south_dfaa {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slider-e94f {
    font-size: 1.375rem;
  }
  
  .cool_2694 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dirty-4bba,
  .hidden_next_1148,
  .active_dc51,
  .widget_upper_054c,
  .status_hard_3a1e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .caption_1bf9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .sort-df59 {
    gap: var(--space-xs);
  }
  
  .nav_hard_26aa {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .blue_14db {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hovered_9a5f {
    width: 150px;
    height: 150px;
  }
  
  .simple-87bf {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .status-30b7,
  .plasma_c23c,
  .button_hard_f7af,
  .element-cool-77af,
  .smooth_95f5,
  .message-57f5,
  .hot_6fc7 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .search-fab3 {
    page-break-inside: avoid;
  }
}

/* css-noise: 46be */
.phantom-card-d7 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
