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

.tertiary-pink-fa9c:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.table-pressed-5575):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. */
.table-pressed-5575,
header,
.container-c9b2,
.hero_north_46d0,
.picture-orange-8a0d,
.card_bab3,
.glass_405c,
.fluid_8849,
.purple_3e48 {
  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
   ============================================ */
.table-pressed-5575 {
  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);
}

.section-yellow-cfbe {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.table-pressed-5575.detail-medium-208c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.nav_63e4 {
  flex: 1;
}

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

.module-outer-67f3 {
  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);
}

.module-outer-67f3:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.module-outer-67f3.card-b61c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.wrapper-under-e6e1 {
  position: relative;
}

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

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

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

.item-78a7 {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.sidebar-small-6f7f {
  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;
}

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

.sidebar-small-6f7f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.layout-current-8662[aria-expanded="true"] .north-0fd5:nth-child(2) {
  opacity: 0;
}

.layout-current-8662[aria-expanded="true"] .north-0fd5:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .nav_63e4::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .nav_63e4.block_204b {
    display: block;
    right: 0;
  }
  
  .paper-1b59 {
    flex-direction: column;
    gap: 0;
  }
  
  .module-outer-67f3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .nav_63e4::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;
  }
  
  .nav_63e4.block_204b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .nav_63e4 {
    display: none;
  }
  
  .layout-current-8662 {
    display: flex;
  }
  
  .paper_9eab {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .sidebar-small-6f7f,
  .cold_8d58 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .wrapper-under-e6e1 {
    position: relative;
  }
  
  .item-78a7 {
    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;
  }
  
  .overlay_complex_5e4e[aria-expanded="true"] + .item-78a7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .carousel_c174 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .advanced_fefb {
    gap: 8px;
  }
  
  .sidebar-small-6f7f {
    display: none;
  }
  
  .cold_8d58 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .filter_cc8e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.background_3b1c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.hovered-61b7 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.module-158b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .bottom-dd2f {
    grid-template-columns: 1fr;
  }
  
  .stale-b21b {
    font-size: 1.75rem;
  }
  
  .last_87a5 {
    order: -1;
    max-width: 100%;
  }
  
  .picture_soft_5d29 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .stale-b21b {
    font-size: 1.5rem;
  }
  
  .modal_full_9205 {
    font-size: 1rem;
  }
  
  .wrapper_narrow_f020 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .picture_soft_5d29 {
    max-width: 250px;
  }
}

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

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

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

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

.clean-85ae:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.feature-light-3123 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.avatar-2c60 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-bottom-9763 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_97c4 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) {
  .box_3934 {
    grid-template-columns: 1fr;
  }
  
  .accent-5925 {
    font-size: 1.75rem;
  }
  
  .fixed_8fd8 {
    max-width: 100%;
  }
}

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

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

.card-steel-037e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.article-glass-6b0c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.main-left-3db0 {
  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;
}

.hidden-a7f4 {
  flex-shrink: 0;
}

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

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

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

.image_basic_fb6a,
.button_old_f3e5,
.west-e605 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.image_basic_fb6a thead,
.button_old_f3e5 thead {
  background: var(--color-primary);
  color: white;
}

.image_basic_fb6a th,
.image_basic_fb6a td,
.button_old_f3e5 th,
.button_old_f3e5 td,
.west-e605 th,
.west-e605 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .image_basic_fb6a th,
  .image_basic_fb6a td,
  .button_old_f3e5 th,
  .button_old_f3e5 td,
  .west-e605 th,
  .west-e605 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .image_basic_fb6a,
  .button_old_f3e5,
  .west-e605 {
    min-width: 600px;
  }
}

.image_basic_fb6a th,
.button_old_f3e5 th,
.west-e605 th {
  font-weight: 600;
}

.image_basic_fb6a tbody tr:hover,
.button_old_f3e5 tbody tr:hover,
.west-e605 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.input-b0a5 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.focus-886e {
  font-weight: 600;
  color: white;
}

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

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

.photo-simple-725a {
  color: #4caf50;
}

.section-e092 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus-886e {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.gallery-hovered-57a9 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.rough_75fa .yellow_2a08 {
  width: 100%;
  background: white;
}

.description-e511 .yellow_2a08 {
  color: #667eea;
}

.short_59ad .yellow_2a08 {
  color: #f5576c;
}

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

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

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

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

.info-ffe6 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .info-ffe6 {
    padding: var(--space-md);
  }
  
  .paper-d551 {
    padding: var(--space-md);
  }
  
  .soft_d6ec {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.pink-90ff li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.header_tall_449b,
.primary_7d76,
.pink-fc3c,
.left_192c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.widget-upper-8c39 {
  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) {
  .widget-upper-8c39 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_203f .panel_dim_68a7 {
  background: #e8f5e9;
  color: var(--color-success);
}

.title_1f4e .panel_dim_68a7 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.hot-1faa {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .layout-silver-9f2e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.section-9057 {
  text-align: center;
}

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

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

.east-9391 .focus-886e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.shade-orange-43b6 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.tertiary-bottom-2f11 {
  border: 2px solid #4caf50;
}

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

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

.mask-8dc6 {
  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;
}

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

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

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

.gradient-basic-1f5c {
  text-align: right;
}

.gradient-basic-1f5c .panel_fixed_a0f5 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.accent-5346 {
  background: #e8f5e9;
  color: #2e7d32;
}

.action-e87e {
  background: #e3f2fd;
  color: #1565c0;
}

.wood-dca8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.heading-3f04 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.iron-3111[aria-expanded="true"] .over_43b1 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed-abca,
.section_5b47 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.fixed-abca h4,
.section_5b47 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.fixed-abca ul,
.section_5b47 ul {
  list-style: none;
  padding: 0;
}

.fixed-abca li,
.section_5b47 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.box_6d31 {
  font-style: italic;
}

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

.copper-0ca0 {
  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;
}

.copper-0ca0 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.copper-0ca0 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-stale-c81a .dynamic-5395 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hidden-37c0 {
  list-style: none;
  padding: 0;
}

.hidden-37c0 li {
  margin-bottom: var(--space-xs);
}

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

.hidden-37c0 a:hover {
  color: white;
}

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

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

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

.breadcrumb_0d40 a:hover {
  color: white;
}

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

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

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

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

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

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

.widget-973a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .inner_21df {
    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;
  }
  
  .stale-b21b {
    font-size: 2rem;
  }
  
  .accent-5925 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .bottom-dd2f,
  .box_3934 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .warm-2337,
  .icon_204c,
  .middle-4ed0,
  .layout-silver-9f2e,
  .west_42a9,
  .icon-68a5,
  .pagination-hot-e76a,
  .under_8ddc {
    grid-template-columns: 1fr;
  }
  
  .content_62fc {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .glass_405c {
    padding: var(--space-lg) 0;
  }
  
  .inner_b4bd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .inner_b4bd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .yellow_2a08 {
    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;
  }
  
  .content_62fc {
    grid-template-columns: 1fr;
  }
  
  .module-158b,
  .full-1afa,
  .photo_last_847f {
    flex-direction: column;
    width: 100%;
  }
  
  .feature-light-3123,
  .avatar-2c60,
  .module-158b .yellow_2a08,
  .full-1afa .yellow_2a08 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .stale-b21b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .accent-5925 {
    font-size: 1.375rem;
  }
  
  .dropdown-f033 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .pagination_prev_d0f0,
  .icon-1016,
  .accent-ddee,
  .info-blue-cf8e,
  .table-orange-adca {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget-upper-8c39 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .widget-4b43 {
    gap: var(--space-xs);
  }
  
  .background_3b1c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .highlight-9834 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .east-9391 {
    width: 150px;
    height: 150px;
  }
  
  .tabs-down-d889 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .table-pressed-5575,
  .container-c9b2,
  .module-158b,
  .copper-0ca0,
  .fluid_8849,
  .purple_3e48,
  .layout-current-8662 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .glass_405c {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9e74 */
.ghost-box-b3 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.3;
}
