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

.backdrop_6059:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.notice_40a9,
header,
.clean-b6ad,
.left_826f,
.primary-de1d,
.banner_997b,
.picture_f0c0,
.dark-d170,
.grid-pressed-685e {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.notice_40a9 {
  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);
}

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

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

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

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

.frame-dirty-05af {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.warm-8c18 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.tooltip_1ca3 {
  flex: 1;
}

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

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

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

.preview-aea8.fn-active-47cf {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.medium-1ac3 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.over_d9fe svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .tooltip_1ca3 {
    display: none;
  }
  
  .full-d8ec {
    display: flex;
  }
  
  .alert-4597 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .over_d9fe,
  .caption_e4e2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .medium-1ac3 {
    position: relative;
  }
  
  .lower_002c {
    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;
  }
  
  .chip_pro_6d1d[aria-expanded="true"] + .lower_002c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .green_d94d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .shadow-31a3 {
    gap: 8px;
  }
  
  .over_d9fe {
    display: none;
  }
  
  .caption_e4e2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .warm-8c18 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.panel-6da3 svg {
  flex-shrink: 0;
}

.panel-6da3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.panel-6da3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.alert-f636 a:hover {
  text-decoration: underline;
}

.lite-93ae {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.hidden-bottom-1d99 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

.fixed-8b47 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.hero-d9af {
  position: relative;
  text-align: center;
}

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

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

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

.wrapper-gold-9e69 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .green-b6e6 {
    grid-template-columns: 1fr;
  }
  
  .notification-d922 {
    font-size: 1.75rem;
  }
  
  .main_soft_b292 {
    order: -1;
    max-width: 100%;
  }
  
  .hero-d9af {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification-d922 {
    font-size: 1.5rem;
  }
  
  .cool_2411 {
    font-size: 1rem;
  }
  
  .alert-f636 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hero-d9af {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.notice-lower-1275 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.feature-medium-634c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.tabs-06ce {
  list-style: none;
  counter-reset: toc-counter;
}

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

.tabs-06ce 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);
}

.tabs-06ce 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;
}

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

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

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

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

.dirty-821c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_selected_8212 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) {
  .photo-f77e {
    grid-template-columns: 1fr;
  }
  
  .sidebar-ed1d {
    font-size: 1.75rem;
  }
  
  .simple_763a {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.progress-108d {
  flex-shrink: 0;
}

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

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

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

.layout_12d0,
.dark_6bd1,
.fixed-e0ca {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.layout_12d0 thead,
.dark_6bd1 thead {
  background: var(--color-primary);
  color: white;
}

.layout_12d0 th,
.layout_12d0 td,
.dark_6bd1 th,
.dark_6bd1 td,
.fixed-e0ca th,
.fixed-e0ca td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .layout_12d0 th,
  .layout_12d0 td,
  .dark_6bd1 th,
  .dark_6bd1 td,
  .fixed-e0ca th,
  .fixed-e0ca td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .layout_12d0,
  .dark_6bd1,
  .fixed-e0ca {
    min-width: 600px;
  }
}

.layout_12d0 th,
.dark_6bd1 th,
.fixed-e0ca th {
  font-weight: 600;
}

.layout_12d0 tbody tr:hover,
.dark_6bd1 tbody tr:hover,
.fixed-e0ca tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.filter_fixed_8d59 h4 {
  color: white;
}

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

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

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

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

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

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

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

.mask-aec0:hover {
  text-decoration: underline;
}

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

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

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

.cold_c1c0 {
  font-weight: 600;
  color: white;
}

.info-north-2f9f {
  list-style: none;
  padding: 0;
}

.info-north-2f9f li {
  padding: var(--space-xs) 0;
}

.avatar_e169 {
  color: #4caf50;
}

.picture-green-93d2 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search_416c .card_2b09 {
  width: 100%;
  background: white;
}

.outer-2188 .card_2b09 {
  color: #667eea;
}

.main_e86b .card_2b09 {
  color: #f5576c;
}

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

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

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

.block-hot-5419 {
  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);
}

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

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

@media (max-width: 768px) {
  .over_70f4 {
    padding: var(--space-md);
  }
  
  .image_dim_3b5c {
    padding: var(--space-md);
  }
  
  .tall-c8a3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hover-thick-c21c,
.up-d1ed,
.primary-f923,
.overlay-8037 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.filter-right-fcbe h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.hard-70e1 {
  border-color: var(--color-warning);
}

.content-thick-226c {
  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);
}

.west-f6b7 .content-thick-226c {
  background: #e8f5e9;
  color: var(--color-success);
}

.hard-70e1 .content-thick-226c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.bright-7bb8 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.short-69f0 {
  margin-top: var(--space-xxl);
}

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

.hard_7cdf {
  text-align: center;
}

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

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

.bottom-8597 .cold_c1c0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.avatar-static-a6d5 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-8a13 {
  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;
}

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

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

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

.icon_1195 {
  text-align: right;
}

.icon_1195 .gallery-f5e7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.modal-a1e7 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.fluid-2f62 strong {
  color: var(--color-primary);
}

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

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

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

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

.preview-49b1 {
  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);
}

.preview-49b1:hover {
  background: var(--color-bg-alt);
}

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

.preview-49b1[aria-expanded="true"] .bronze_fec8 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper_a6c6 ul,
.bronze_e31c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.inner-03d7 {
  font-style: italic;
}

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

.component-focused-d314 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.title_under_9f91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.media_fef3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.media_fef3 a:hover {
  color: white;
}

.video_steel_8651 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.video_steel_8651 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.video_steel_8651 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.pattern-last-5950 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.pattern-last-5950 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.pattern-last-5950 a:hover {
  color: white;
}

.rough_1e65 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .slider-steel-fecc,
  .title_under_9f91 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.dim_068b .orange_6092 {
  color: #4caf50;
  font-size: 0.875rem;
}

.copper-668d {
  list-style: none;
  padding: 0;
}

.copper-668d li {
  margin-bottom: var(--space-xs);
}

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

.copper-668d a:hover {
  color: white;
}

.selected-4627 {
  list-style: none;
  padding: 0;
}

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

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

.selected-4627 a:hover {
  color: white;
}

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

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

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

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

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

.hot-d8b8 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.hot-d8b8 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .rough_1e65 {
    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;
  }
  
  .notification-d922 {
    font-size: 2rem;
  }
  
  .sidebar-ed1d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .green-b6e6,
  .photo-f77e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .out-050d,
  .summary_ca70,
  .slider-3f91,
  .widget_wood_5554,
  .label_gas_38a0,
  .wide-1dcd,
  .highlight_1fd4,
  .slider-steel-fecc,
  .title_under_9f91 {
    grid-template-columns: 1fr;
  }
  
  .summary-20d9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .picture_f0c0 {
    padding: var(--space-lg) 0;
  }
  
  .tabs-06ce li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs-06ce li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .card_2b09 {
    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;
  }
  
  .summary-20d9 {
    grid-template-columns: 1fr;
  }
  
  .fixed-8b47,
  .large_cfa2,
  .icon_fluid_a8a3 {
    flex-direction: column;
    width: 100%;
  }
  
  .notice-lower-1275,
  .clean_db44,
  .fixed-8b47 .card_2b09,
  .large_cfa2 .card_2b09 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification-d922 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sidebar-ed1d {
    font-size: 1.375rem;
  }
  
  .video_left_22fa {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .feature-medium-634c,
  .first_64cd,
  .shade-c71a,
  .video_979f,
  .input_hot_13c8 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .top-6527 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .card-00a5 {
    gap: var(--space-xs);
  }
  
  .panel-6da3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .image_next_6d33 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .bottom-8597 {
    width: 150px;
    height: 150px;
  }
  
  .outer-5a38 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notice_40a9,
  .clean-b6ad,
  .fixed-8b47,
  .component-focused-d314,
  .dark-d170,
  .grid-pressed-685e,
  .full-d8ec {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .picture_f0c0 {
    page-break-inside: avoid;
  }
}

/* css-noise: e5e6 */
.widget-item-o1 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
