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

.paragraph_bright_07cf:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .dropdown-cold-38a7 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .dropdown-cold-38a7 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.selected_5484):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. */
.selected_5484,
header,
.gold_2669,
.motion_ec5a,
.content-7d0d,
.alert_hard_e927,
.over_e7d8,
.gradient-prev-b21c,
.outline_13e4 {
  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
   ============================================ */
.selected_5484 {
  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);
}

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

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

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

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

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

.primary-6f66 img {
  height: 36px;
  width: auto;
  display: block;
}

.copper-451b {
  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;
}

.purple_b003 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.backdrop-942b {
  position: relative;
}

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

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

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

.over-2aa6 {
  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;
}

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

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

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

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

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

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

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

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

.cold_412e svg {
  flex-shrink: 0;
}

/* Header Download Button */
.summary-left-22d9 {
  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;
}

.summary-left-22d9: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);
}

.summary-left-22d9 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .purple_b003 {
    display: none;
  }
  
  .up_fcef {
    display: flex;
  }
  
  .copper-451b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .cold_412e,
  .summary-left-22d9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .backdrop-942b {
    position: relative;
  }
  
  .over-2aa6 {
    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;
  }
  
  .content_ec27[aria-expanded="true"] + .over-2aa6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .status-1afe {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .title_thick_dae7 {
    gap: 8px;
  }
  
  .cold_412e {
    display: none;
  }
  
  .summary-left-22d9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .primary-6f66 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.video_fixed_97a8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.paper-05b1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.paper-05b1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.outline-9fa3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.outline-9fa3 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.button-liquid-95d1 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.table-lower-541f {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-basic-cbab {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tooltip-simple-e4aa {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb_smooth_4665 {
    font-size: 1.75rem;
  }
  
  .table-lower-541f {
    order: -1;
    max-width: 100%;
  }
  
  .table-basic-cbab {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .breadcrumb_smooth_4665 {
    font-size: 1.5rem;
  }
  
  .shadow_e870 {
    font-size: 1rem;
  }
  
  .paper-05b1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .table-basic-cbab {
    max-width: 250px;
  }
}

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

.carousel-motion-9aa3 {
  background: var(--color-primary);
  color: white;
}

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

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

.pro-5af8:hover {
  background: var(--color-primary);
  color: white;
}

.green-2ec4 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

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

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

.status-fast-15d1 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-active-8938 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark_632b 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) {
  .detail_pink_bed0 {
    grid-template-columns: 1fr;
  }
  
  .preview-active-8938 {
    font-size: 1.75rem;
  }
  
  .sidebar_f471 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .preview-active-8938 {
    font-size: 1.5rem;
  }
  
  .sidebar_f471 h3 {
    font-size: 1.375rem;
  }
  
  .sidebar_f471 h4 {
    font-size: 1.125rem;
  }
}

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

.banner-complex-659c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.active-dark-0f11 {
  flex-shrink: 0;
}

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

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

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

.icon_green_c4e2,
.red_8ad8,
.lite_6ef8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.icon_green_c4e2 thead,
.red_8ad8 thead {
  background: var(--color-primary);
  color: white;
}

.icon_green_c4e2 th,
.icon_green_c4e2 td,
.red_8ad8 th,
.red_8ad8 td,
.lite_6ef8 th,
.lite_6ef8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .icon_green_c4e2 th,
  .icon_green_c4e2 td,
  .red_8ad8 th,
  .red_8ad8 td,
  .lite_6ef8 th,
  .lite_6ef8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .icon_green_c4e2,
  .red_8ad8,
  .lite_6ef8 {
    min-width: 600px;
  }
}

.icon_green_c4e2 th,
.red_8ad8 th,
.lite_6ef8 th {
  font-weight: 600;
}

.icon_green_c4e2 tbody tr:hover,
.red_8ad8 tbody tr:hover,
.lite_6ef8 tbody tr:hover {
  background: var(--color-bg-alt);
}

.grid-top-07ee {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

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

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

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

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

.sidebar_full_a73c h4 {
  color: white;
}

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

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

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

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

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

.detail-right-6ec5 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

.chip-lower-93dd {
  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);
}

.chip-lower-93dd span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.pattern-complex-ba4e {
  font-weight: 600;
  color: white;
}

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

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

.hard_9919 {
  color: #4caf50;
}

.info-full-2b3d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-complex-ba4e {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary_hard_90c9 .accordion_0f7c {
  width: 100%;
  background: white;
}

.white_9350 .accordion_0f7c {
  color: #667eea;
}

.media-narrow-85fd .accordion_0f7c {
  color: #f5576c;
}

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

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

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

.container-last-84da {
  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);
}

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

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

@media (max-width: 768px) {
  .menu_8d85 {
    padding: var(--space-md);
  }
  
  .fresh_1b39 {
    padding: var(--space-md);
  }
  
  .input-full-a724 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.border-2aec,
.notification_silver_15da,
.fixed-9aa4,
.orange-2651 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.layout-fresh-cbb6:hover {
  background: var(--color-primary-dark);
}

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

.black-90f0 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.modal-5a98 {
  border-color: var(--color-success);
}

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

.popup-lower-63bc {
  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);
}

.modal-5a98 .popup-lower-63bc {
  background: #e8f5e9;
  color: var(--color-success);
}

.container_selected_1a60 .popup-lower-63bc {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-5f32 {
  margin-top: var(--space-xxl);
}

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

.wrapper-north-d18a {
  text-align: center;
}

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

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

.surface_cool_3279 .pattern-complex-ba4e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort_bronze_122e {
  text-align: right;
}

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

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

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

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

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

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

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

.primary-f465 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.motion-9afd,
.hard_44b0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.motion-9afd h4,
.hard_44b0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.motion-9afd ul,
.hard_44b0 ul {
  list-style: none;
  padding: 0;
}

.motion-9afd li,
.hard_44b0 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.container-left-3ef0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.container-left-3ef0 ul {
  list-style: none;
  padding: 0;
}

.container-left-3ef0 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.mask-left-2739 {
  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);
}

.clean_2eb6 {
  font-style: italic;
}

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

.picture-5a08 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pressed_7ebc .input_focused_e17d {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.widget_638a a:hover {
  color: white;
}

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

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

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

.focus_basic_8a5b a:hover {
  color: white;
}

.shadow-purple-d540 {
  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);
}

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

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

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

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

.carousel-active-1fbe {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.carousel-active-1fbe:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .shadow-purple-d540 {
    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;
  }
  
  .breadcrumb_smooth_4665 {
    font-size: 2rem;
  }
  
  .preview-active-8938 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tooltip-simple-e4aa,
  .detail_pink_bed0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tertiary-full-eb91,
  .bright_d59b,
  .old_815e,
  .current_61b9,
  .tabs_middle_1eeb,
  .status-selected-5602,
  .detail_right_d7a8,
  .carousel_fluid_e19b {
    grid-template-columns: 1fr;
  }
  
  .shadow_right_5b03 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .over_e7d8 {
    padding: var(--space-lg) 0;
  }
  
  .aside_8201 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .aside_8201 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accordion_0f7c {
    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;
  }
  
  .shadow_right_5b03 {
    grid-template-columns: 1fr;
  }
  
  .button-liquid-95d1,
  .primary_df4c,
  .module_6832 {
    flex-direction: column;
    width: 100%;
  }
  
  .preview_outer_0c2b,
  .status-fast-15d1,
  .button-liquid-95d1 .accordion_0f7c,
  .primary_df4c .accordion_0f7c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .breadcrumb_smooth_4665 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .preview-active-8938 {
    font-size: 1.375rem;
  }
  
  .next-0490 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .breadcrumb-2ff6,
  .under-5ec6,
  .logo_79c2,
  .dirty_d989,
  .preview_abd4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .mask_ad9b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .accent_99e8 {
    gap: var(--space-xs);
  }
  
  .video_fixed_97a8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .chip-lower-93dd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .surface_cool_3279 {
    width: 150px;
    height: 150px;
  }
  
  .dim-04dd {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .selected_5484,
  .gold_2669,
  .button-liquid-95d1,
  .picture-5a08,
  .gradient-prev-b21c,
  .outline_13e4,
  .up_fcef {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .over_e7d8 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: adb0 */
.ghost-box-r3 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
