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

.active-2c19:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.next_5537,
header,
.video-d5c4,
.light-8abb,
.heading-7625,
.wood-98cb,
.bright_bce1,
.content-medium-d9d7,
.lite_185f {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

.label-in-8fec {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.table-pressed-e3ec img {
  height: 36px;
  width: auto;
  display: block;
}

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

.detail-fixed-74aa {
  flex: 1;
}

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

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

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

.grid_pink_04a0.table-blue-3d46 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.dark-386b {
  position: relative;
}

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

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

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

.content-0be6 {
  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;
}

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

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

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

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

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

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

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

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

.highlight_4136 svg {
  flex-shrink: 0;
}

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

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

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

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

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

.sidebar-purple-7c56 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.smooth-8886[aria-expanded="true"] .sidebar-purple-7c56:nth-child(2) {
  opacity: 0;
}

.smooth-8886[aria-expanded="true"] .sidebar-purple-7c56:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .detail-fixed-74aa {
    display: none;
  }
  
  .smooth-8886 {
    display: flex;
  }
  
  .pressed_bd49 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .highlight_4136,
  .bright_567b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .dark-386b {
    position: relative;
  }
  
  .content-0be6 {
    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;
  }
  
  .popup_4026[aria-expanded="true"] + .content-0be6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .photo-ae3f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .outer_7c9c {
    gap: 8px;
  }
  
  .highlight_4136 {
    display: none;
  }
  
  .bright_567b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .table-pressed-e3ec img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.iron_8eb0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.tertiary-96d8 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.avatar-66af {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hidden_west_2ae7 {
    grid-template-columns: 1fr;
  }
  
  .title_outer_2d4b {
    font-size: 1.75rem;
  }
  
  .sort_2d8a {
    order: -1;
    max-width: 100%;
  }
  
  .cold_86ef {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .title_outer_2d4b {
    font-size: 1.5rem;
  }
  
  .description_bronze_65bf {
    font-size: 1rem;
  }
  
  .thumbnail_3abb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .cold_86ef {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.white-2f93 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

.tooltip-gold-2d41 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article_orange_984c 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) {
  .east_a6ec {
    grid-template-columns: 1fr;
  }
  
  .north_66ef {
    font-size: 1.75rem;
  }
  
  .section_cold_cbbd {
    max-width: 100%;
  }
}

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

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

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

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

.component-hovered-2322 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.short-1a52 {
  flex-shrink: 0;
}

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

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

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

.detail-slow-fc29,
.notification_advanced_a170,
.row_1f23 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.detail-slow-fc29 thead,
.notification_advanced_a170 thead {
  background: var(--color-primary);
  color: white;
}

.detail-slow-fc29 th,
.detail-slow-fc29 td,
.notification_advanced_a170 th,
.notification_advanced_a170 td,
.row_1f23 th,
.row_1f23 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .detail-slow-fc29 th,
  .detail-slow-fc29 td,
  .notification_advanced_a170 th,
  .notification_advanced_a170 td,
  .row_1f23 th,
  .row_1f23 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .detail-slow-fc29,
  .notification_advanced_a170,
  .row_1f23 {
    min-width: 600px;
  }
}

.detail-slow-fc29 th,
.notification_advanced_a170 th,
.row_1f23 th {
  font-weight: 600;
}

.detail-slow-fc29 tbody tr:hover,
.notification_advanced_a170 tbody tr:hover,
.row_1f23 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.stale-ab35 h4 {
  color: white;
}

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

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

.pattern-warm-d125:last-child {
  border-bottom: none;
}

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

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

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

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

.progress-white-58c5:hover {
  text-decoration: underline;
}

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

.avatar-43c0 {
  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);
}

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

.block-down-8e3d {
  font-weight: 600;
  color: white;
}

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

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

.carousel-85d9 {
  color: #4caf50;
}

.shade-41ba {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.border-9d4a {
  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;
}

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

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

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

.block-down-8e3d {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard_56b0 .under_f4a9 {
  width: 100%;
  background: white;
}

.bright_0cd4 .under_f4a9 {
  color: #667eea;
}

.dark_118c .under_f4a9 {
  color: #f5576c;
}

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

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

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

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

.element-pressed-dfa3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.nav-thick-2610 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .element-pressed-dfa3 {
    padding: var(--space-md);
  }
  
  .nav-thick-2610 {
    padding: var(--space-md);
  }
  
  .chip-ea9a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.silver_040d,
.block_dynamic_eea9,
.banner_9272,
.photo-5ca8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.middle-9c4c:hover {
  background: var(--color-primary-dark);
}

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

.search-240e h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.label-14be {
  border-color: var(--color-warning);
}

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

.hover_paper_e02b .carousel_medium_8620 {
  background: #e8f5e9;
  color: var(--color-success);
}

.label-14be .carousel_medium_8620 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.slider-middle-f245 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.orange_2b76 {
  text-align: center;
}

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

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

.dropdown_west_cf22 .block-down-8e3d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.warm-8dd8 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.easy_d5cf {
  text-align: right;
}

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

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

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

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

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

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

.video-small-3565 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rough_bc5c[aria-expanded="true"] .paper-cf86 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic-077b,
.background-stone-8122 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.basic-077b h4,
.background-stone-8122 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.basic-077b ul,
.background-stone-8122 ul {
  list-style: none;
  padding: 0;
}

.basic-077b li,
.background-stone-8122 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.menu_outer_f193 {
  font-style: italic;
}

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

.primary-pro-61d6 {
  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;
}

.primary-pro-61d6 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.primary-pro-61d6 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-6e7c .bronze_5b04 {
  color: #4caf50;
  font-size: 0.875rem;
}

.outline-last-eea7 {
  list-style: none;
  padding: 0;
}

.outline-last-eea7 li {
  margin-bottom: var(--space-xs);
}

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

.outline-last-eea7 a:hover {
  color: white;
}

.hover-bottom-2b06 {
  list-style: none;
  padding: 0;
}

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

.hover-bottom-2b06 a {
  color: #b0b0b0;
  text-decoration: none;
}

.hover-bottom-2b06 a:hover {
  color: white;
}

.frame-dark-960c {
  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);
}

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

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

.link-6f91 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .frame-dark-960c {
    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;
  }
  
  .title_outer_2d4b {
    font-size: 2rem;
  }
  
  .north_66ef {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hidden_west_2ae7,
  .east_a6ec {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .simple_460a,
  .content_stale_c602,
  .tabs_2ec1,
  .card_8f2d,
  .card_dynamic_7aa7,
  .input-plasma-fb4c,
  .card-c6af,
  .grid_orange_e1c2 {
    grid-template-columns: 1fr;
  }
  
  .description_6144 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .bright_bce1 {
    padding: var(--space-lg) 0;
  }
  
  .over_752d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .over_752d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .under_f4a9 {
    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;
  }
  
  .description_6144 {
    grid-template-columns: 1fr;
  }
  
  .footer_7e58,
  .form_a12e,
  .title_east_3d6f {
    flex-direction: column;
    width: 100%;
  }
  
  .white-2f93,
  .logo_under_1685,
  .footer_7e58 .under_f4a9,
  .form_a12e .under_f4a9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .title_outer_2d4b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .north_66ef {
    font-size: 1.375rem;
  }
  
  .carousel-58e4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hover-narrow-e3cb,
  .box-green-7678,
  .content_d007,
  .thumbnail_e6bc,
  .carousel_8e0d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .background_silver_aa95 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .column-7708 {
    gap: var(--space-xs);
  }
  
  .iron_8eb0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .avatar-43c0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dropdown_west_cf22 {
    width: 150px;
    height: 150px;
  }
  
  .blue_2ecf {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .next_5537,
  .video-d5c4,
  .footer_7e58,
  .primary-pro-61d6,
  .content-medium-d9d7,
  .lite_185f,
  .smooth-8886 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .bright_bce1 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.accent-b6c0 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 47f1 */
.shadow-element-p4 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.3;
}
