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

.picture-pressed-f953:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.modal_huge_bc90,
header,
.label-2414,
.clean_e0f4,
.mini_9b09,
.block-3814,
.search-cb3c,
.container-68c6,
.large_97e8 {
  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
   ============================================ */
.modal_huge_bc90 {
  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);
}

.background-blue-538d {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.card-full-e313 img {
  height: 36px;
  width: auto;
  display: block;
}

.wide-6c72 {
  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;
}

.left_5a01 {
  flex: 1;
}

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

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

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

.bronze-b076.fn-active-6d6c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.widget-169a {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.accordion-gold-018f {
  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;
}

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

.accordion-gold-018f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .left_5a01 {
    display: none;
  }
  
  .filter_a6a9 {
    display: flex;
  }
  
  .wide-6c72 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .accordion-gold-018f,
  .info-4424 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .thumbnail_419b {
    position: relative;
  }
  
  .widget-169a {
    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;
  }
  
  .grid_36c7[aria-expanded="true"] + .widget-169a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .cool_b39c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .avatar_5409 {
    gap: 8px;
  }
  
  .accordion-gold-018f {
    display: none;
  }
  
  .info-4424 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .card-full-e313 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.lite_c060 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.over-170a {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.tag-short-d779 {
  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;
}

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

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

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

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

.bronze-33db {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-456f {
  position: relative;
  text-align: center;
}

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

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

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

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

.pattern-complex-89c4 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .soft-79c4 {
    grid-template-columns: 1fr;
  }
  
  .outer_efce {
    font-size: 1.75rem;
  }
  
  .bronze-33db {
    order: -1;
    max-width: 100%;
  }
  
  .container-456f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .outer_efce {
    font-size: 1.5rem;
  }
  
  .pagination-solid-67dc {
    font-size: 1rem;
  }
  
  .middle_2191 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .container-456f {
    max-width: 250px;
  }
}

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

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

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

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

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

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

.chip-solid-5ba9:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

.label-1dca {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.medium-298a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.hidden-small-91a0 {
  list-style: none;
  counter-reset: toc-counter;
}

.hidden-small-91a0 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.hidden-small-91a0 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);
}

.hidden-small-91a0 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;
}

.hidden-small-91a0 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.soft_c91f 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) {
  .in_54a4 {
    grid-template-columns: 1fr;
  }
  
  .component_fresh_55f2 {
    font-size: 1.75rem;
  }
  
  .next_9fd7 {
    max-width: 100%;
  }
}

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

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

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

.widget-yellow-12a8 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.header-532b {
  flex-shrink: 0;
}

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

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

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

.tooltip-11e7,
.inner-71a6,
.accent-warm-c96d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tooltip-11e7 thead,
.inner-71a6 thead {
  background: var(--color-primary);
  color: white;
}

.tooltip-11e7 th,
.tooltip-11e7 td,
.inner-71a6 th,
.inner-71a6 td,
.accent-warm-c96d th,
.accent-warm-c96d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tooltip-11e7 th,
  .tooltip-11e7 td,
  .inner-71a6 th,
  .inner-71a6 td,
  .accent-warm-c96d th,
  .accent-warm-c96d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tooltip-11e7,
  .inner-71a6,
  .accent-warm-c96d {
    min-width: 600px;
  }
}

.tooltip-11e7 th,
.inner-71a6 th,
.accent-warm-c96d th {
  font-weight: 600;
}

.tooltip-11e7 tbody tr:hover,
.inner-71a6 tbody tr:hover,
.accent-warm-c96d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.nav-bronze-7a95 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.active-20d8 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.hero-2c0a {
  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);
}

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

.black-b416 {
  font-weight: 600;
  color: white;
}

.brown-2114 {
  list-style: none;
  padding: 0;
}

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

.lower-be52 {
  color: #4caf50;
}

.video-purple-9c30 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-basic-4077 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.nav-bronze-a144 .disabled-bronze-bc1c {
  width: 100%;
  background: white;
}

.logo_6119 .disabled-bronze-bc1c {
  color: #667eea;
}

.caption-fluid-b677 .disabled-bronze-bc1c {
  color: #f5576c;
}

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

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

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

.breadcrumb-b68c {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.popup-slow-1f81 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .popup-slow-1f81 {
    padding: var(--space-md);
  }
  
  .hard_c2a1 {
    padding: var(--space-md);
  }
  
  .east_62de {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.header_1e3d,
.advanced-f075,
.image-orange-4e70,
.accordion-2505 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.pagination-3bc2:hover {
  background: var(--color-primary-dark);
}

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

.gold-41f7 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.hidden-simple-88cc {
  border-color: var(--color-success);
}

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

.header-new-a3d5 {
  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);
}

.hidden-simple-88cc .header-new-a3d5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.pagination_3649 .header-new-a3d5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.box-fast-475b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.overlay_south_b10f {
  text-align: center;
}

.message-static-b2b3 {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.message-static-b2b3 .black-b416 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.description-7c72 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.center-6aa5 {
  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;
}

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

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

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

.aside_89a5 {
  text-align: right;
}

.aside_89a5 .row-upper-152f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.item-d429 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.grid-4bc6 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.image_blue_a92b[aria-expanded="true"] .texture-paper-0aa5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass_e8fa h4,
.progress_light_97fe h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.glass_e8fa ul,
.progress_light_97fe ul {
  list-style: none;
  padding: 0;
}

.glass_e8fa li,
.progress_light_97fe li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.message-next-e7e6 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.left-95f9 {
  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);
}

.accordion_hard_0994 {
  font-style: italic;
}

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

.purple-5c1b {
  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;
}

.purple-5c1b h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.purple-5c1b p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.silver_3e4c .bright_3dc2 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.mini_1ff1 a:hover {
  color: white;
}

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

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

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

.disabled_lite_e5c5 a:hover {
  color: white;
}

.icon-a507 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

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

.texture-10cb {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .icon-a507 {
    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;
  }
  
  .outer_efce {
    font-size: 2rem;
  }
  
  .component_fresh_55f2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .soft-79c4,
  .in_54a4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .full-7a8e,
  .button-selected-508c,
  .carousel-524d,
  .mask-top-0604,
  .block_full_2d75,
  .panel-3d70,
  .brown-6dc4,
  .column_clean_5ae4 {
    grid-template-columns: 1fr;
  }
  
  .table_cold_049a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .search-cb3c {
    padding: var(--space-lg) 0;
  }
  
  .hidden-small-91a0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hidden-small-91a0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .disabled-bronze-bc1c {
    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;
  }
  
  .table_cold_049a {
    grid-template-columns: 1fr;
  }
  
  .tabs_focused_b5c3,
  .focus_e484,
  .highlight-0e45 {
    flex-direction: column;
    width: 100%;
  }
  
  .fixed-e73d,
  .label-1dca,
  .tabs_focused_b5c3 .disabled-bronze-bc1c,
  .focus_e484 .disabled-bronze-bc1c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .outer_efce {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .component_fresh_55f2 {
    font-size: 1.375rem;
  }
  
  .lite_6ed4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .medium-298a,
  .notice-f66c,
  .tertiary-ebe4,
  .overlay_fixed_f7e3,
  .card_white_e28c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .under-b3fc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .main-9f40 {
    gap: var(--space-xs);
  }
  
  .lite_c060 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hero-2c0a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .message-static-b2b3 {
    width: 150px;
    height: 150px;
  }
  
  .sidebar_94b9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .modal_huge_bc90,
  .label-2414,
  .tabs_focused_b5c3,
  .purple-5c1b,
  .container-68c6,
  .large_97e8,
  .filter_a6a9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .search-cb3c {
    page-break-inside: avoid;
  }
}

/* css-noise: d325 */
.promo-block-s7 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}
