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

.gallery_glass_e7a7:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.bottom_c9bf):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. */
.bottom_c9bf,
header,
.steel_e84d,
.modal-top-4894,
.huge_1dd6,
.backdrop-b29d,
.notification_copper_73db,
.layout-a940,
.gallery_a66a {
  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
   ============================================ */
.bottom_c9bf {
  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);
}

.static_ad84 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.border-3c4a img {
  height: 36px;
  width: auto;
  display: block;
}

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

.widget_tall_89cc {
  flex: 1;
}

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

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

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

.label_fixed_e49d.blue-90cb {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.title-tall-bffe {
  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;
}

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

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

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

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

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

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

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

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

.gas_ecba svg {
  flex-shrink: 0;
}

/* Header Download Button */
.list-wide-68e1 {
  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;
}

.list-wide-68e1: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);
}

.list-wide-68e1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.modal-277e[aria-expanded="true"] .over_eec1:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .widget_tall_89cc {
    display: none;
  }
  
  .modal-277e {
    display: flex;
  }
  
  .surface_4f8b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gas_ecba,
  .list-wide-68e1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .left_2dfe {
    position: relative;
  }
  
  .title-tall-bffe {
    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;
  }
  
  .gas_67c2[aria-expanded="true"] + .title-tall-bffe {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tooltip_de33 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .backdrop_0c42 {
    gap: 8px;
  }
  
  .gas_ecba {
    display: none;
  }
  
  .list-wide-68e1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .border-3c4a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.column_silver_7855 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.background-tall-58e2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.frame-56c2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-lower-c881 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .text-1f7a {
    grid-template-columns: 1fr;
  }
  
  .green_050f {
    font-size: 1.75rem;
  }
  
  .frame-56c2 {
    order: -1;
    max-width: 100%;
  }
  
  .header-lower-c881 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .green_050f {
    font-size: 1.5rem;
  }
  
  .tag-fixed-2c06 {
    font-size: 1rem;
  }
  
  .box_soft_32ff {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .header-lower-c881 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow-small-47e6 {
  list-style: none;
  counter-reset: toc-counter;
}

.shadow-small-47e6 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.shadow-small-47e6 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);
}

.shadow-small-47e6 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;
}

.shadow-small-47e6 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

.lower-7f1a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

.lower-7f1a strong {
  font-weight: 600;
  color: var(--color-text);
}

.lower-7f1a a {
  color: var(--color-primary);
  text-decoration: underline;
}

.lower-7f1a a:hover {
  color: var(--color-primary-dark);
}

.easy-7c49 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.easy-7c49 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) {
  .gold_f02a {
    grid-template-columns: 1fr;
  }
  
  .icon_b0bf {
    font-size: 1.75rem;
  }
  
  .lower-7f1a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .icon_b0bf {
    font-size: 1.5rem;
  }
  
  .lower-7f1a h3 {
    font-size: 1.375rem;
  }
  
  .lower-7f1a h4 {
    font-size: 1.125rem;
  }
}

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

.heading-west-eff5 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.status-pink-f454 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.preview_stone_ef08 {
  flex-shrink: 0;
}

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

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

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

.dropdown-solid-f83f,
.photo-4502,
.steel_bfb1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dropdown-solid-f83f thead,
.photo-4502 thead {
  background: var(--color-primary);
  color: white;
}

.dropdown-solid-f83f th,
.dropdown-solid-f83f td,
.photo-4502 th,
.photo-4502 td,
.steel_bfb1 th,
.steel_bfb1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .dropdown-solid-f83f th,
  .dropdown-solid-f83f td,
  .photo-4502 th,
  .photo-4502 td,
  .steel_bfb1 th,
  .steel_bfb1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .dropdown-solid-f83f,
  .photo-4502,
  .steel_bfb1 {
    min-width: 600px;
  }
}

.dropdown-solid-f83f th,
.photo-4502 th,
.steel_bfb1 th {
  font-weight: 600;
}

.dropdown-solid-f83f tbody tr:hover,
.photo-4502 tbody tr:hover,
.steel_bfb1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.menu-wood-7e94 h4 {
  color: white;
}

.outline-liquid-93f2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.border-pink-5275:hover {
  text-decoration: underline;
}

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

.highlight_b92c {
  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_b92c span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.summary-dim-2cd3 {
  font-weight: 600;
  color: white;
}

.hard-47f8 {
  list-style: none;
  padding: 0;
}

.hard-47f8 li {
  padding: var(--space-xs) 0;
}

.pro-80db {
  color: #4caf50;
}

.full-16a9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.section-north-23d1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.aside-35ea {
  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;
}

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

.section-north-23d1 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.summary-dim-2cd3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

.shade-hard-33e4 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-4d66 .cool-df17 {
  width: 100%;
  background: white;
}

.link-ed7f .cool-df17 {
  color: #667eea;
}

.media-iron-888b .cool-df17 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .thumbnail_smooth_68f5 {
    padding: var(--space-md);
  }
  
  .dark_3134 {
    padding: var(--space-md);
  }
  
  .input_973c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.wood-a085,
.tag-full-51cb,
.static_5c0a,
.tiny-2cf5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.card-white-ffd8:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.card-9c5b {
  border-color: var(--color-success);
}

.middle-9b3f {
  border-color: var(--color-warning);
}

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

.card-9c5b .tooltip_fb4e {
  background: #e8f5e9;
  color: var(--color-success);
}

.middle-9b3f .tooltip_fb4e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over-af4b {
  text-align: center;
}

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

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

.easy-d537 .summary-dim-2cd3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.content-lite-f56f {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.dropdown-simple-2b04 {
  border: 2px solid #4caf50;
}

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

.medium-3ecd {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.table-hard-6f27 {
  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;
}

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

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

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

.list_a93d {
  text-align: right;
}

.list_a93d .next-faab {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.image-top-e9c2 {
  background: #e3f2fd;
  color: #1565c0;
}

.west-2fd6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.up-1c9c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.orange_7580[aria-expanded="true"] .prev-1078 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.logo-cold-9538 {
  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-d6bc {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

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

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

.advanced-73c4,
.container-2d09 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.advanced-73c4 h4,
.container-2d09 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.advanced-73c4 ul,
.container-2d09 ul {
  list-style: none;
  padding: 0;
}

.advanced-73c4 li,
.container-2d09 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.form-copper-5fce {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.form-copper-5fce ul {
  list-style: none;
  padding: 0;
}

.form-copper-5fce li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.hover_2197 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border_first_df71 .under-d370 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.texture_25eb a:hover {
  color: white;
}

.header-e2f3 {
  list-style: none;
  padding: 0;
}

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

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

.header-e2f3 a:hover {
  color: white;
}

.orange-248b {
  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);
}

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

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

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

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

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

.prev-e508:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .orange-248b {
    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;
  }
  
  .green_050f {
    font-size: 2rem;
  }
  
  .icon_b0bf {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .text-1f7a,
  .gold_f02a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tooltip_prev_9686,
  .media-ee20,
  .text-3485,
  .copper_f234,
  .thumbnail-2294,
  .inner-dafa,
  .sidebar-27cf,
  .badge_cool_a318 {
    grid-template-columns: 1fr;
  }
  
  .text-b02e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notification_copper_73db {
    padding: var(--space-lg) 0;
  }
  
  .shadow-small-47e6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shadow-small-47e6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cool-df17 {
    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;
  }
  
  .text-b02e {
    grid-template-columns: 1fr;
  }
  
  .background-tall-58e2,
  .stone-ca98,
  .liquid-a5cf {
    flex-direction: column;
    width: 100%;
  }
  
  .component_steel_58b3,
  .down-ab53,
  .background-tall-58e2 .cool-df17,
  .stone-ca98 .cool-df17 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .green_050f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .icon_b0bf {
    font-size: 1.375rem;
  }
  
  .tall-e2fd {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .logo_0ece,
  .section-north-23d1,
  .paper-e025,
  .old_e378,
  .module_6f34 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gallery_clean_3854 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tall-8214 {
    gap: var(--space-xs);
  }
  
  .column_silver_7855 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .highlight_b92c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .easy-d537 {
    width: 150px;
    height: 150px;
  }
  
  .gallery-a20d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .bottom_c9bf,
  .steel_e84d,
  .background-tall-58e2,
  .sidebar_silver_a522,
  .layout-a940,
  .gallery_a66a,
  .modal-277e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notification_copper_73db {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 645f */
.promo-block-y0 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
