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

.border-smooth-a495:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.photo_motion_6d5c,
header,
.green_33f9,
.popup-mini-2f6b,
.paragraph_simple_867d,
.basic_5806,
.slow_a46a,
.banner_pro_5420,
.preview-0540 {
  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
   ============================================ */
.photo_motion_6d5c {
  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);
}

.grid-copper-10ad {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.footer-867d {
  flex: 1;
}

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

.menu-current-0e3a {
  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);
}

.menu-current-0e3a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.menu-current-0e3a.fn-active-71c1 {
  background: var(--color-primary);
  color: white;
}

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

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

.info-hard-3c3b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.huge_2142 svg {
  flex-shrink: 0;
}

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

.surface-8e6f: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);
}

.surface-8e6f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .footer-867d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .footer-867d.status_center_0741 {
    display: block;
    right: 0;
  }
  
  .hidden-f70b {
    flex-direction: column;
    gap: 0;
  }
  
  .menu-current-0e3a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .footer-867d::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;
  }
  
  .footer-867d.status_center_0741::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .footer-867d {
    display: none;
  }
  
  .west-f5f3 {
    display: flex;
  }
  
  .over-f51a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .huge_2142,
  .surface-8e6f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .sort_bronze_194b {
    position: relative;
  }
  
  .menu_1e59 {
    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;
  }
  
  .info-hard-3c3b[aria-expanded="true"] + .menu_1e59 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .bronze-fb78 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .warm-8926 {
    gap: 8px;
  }
  
  .huge_2142 {
    display: none;
  }
  
  .surface-8e6f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hidden_9237 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.aside-07ae {
  display: flex;
  align-items: center;
  gap: 6px;
}

.aside-07ae svg {
  flex-shrink: 0;
}

.aside-07ae a {
  color: var(--color-primary);
  text-decoration: none;
}

.aside-07ae a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.wrapper-black-675a {
  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) {
  .wrapper-black-675a {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .wrapper-black-675a {
    font-size: 1.5rem;
  }
}

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

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

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

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

.video-141f {
  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;
}

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

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

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

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

.copper-31fd {
  display: flex;
  align-items: center;
  justify-content: center;
}

.selected-acf1 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .copper-f0b1 {
    grid-template-columns: 1fr;
  }
  
  .wrapper-black-675a {
    font-size: 1.75rem;
  }
  
  .copper-31fd {
    order: -1;
    max-width: 100%;
  }
  
  .selected-acf1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wrapper-black-675a {
    font-size: 1.5rem;
  }
  
  .huge_79b9 {
    font-size: 1rem;
  }
  
  .pattern_8622 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .selected-acf1 {
    max-width: 250px;
  }
}

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

.smooth-95d5 {
  background: var(--color-primary);
  color: white;
}

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

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

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

.tooltip-static-04fe {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.tooltip-static-04fe:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.summary-white-2440 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.column-current-06fa {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.feature-wood-70db {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.tabs-medium-4aee {
  background: var(--color-bg-section);
}

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

.alert-mini-ccc6 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video-1051 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) {
  .aside-over-cf76 {
    grid-template-columns: 1fr;
  }
  
  .link_over_4c1a {
    font-size: 1.75rem;
  }
  
  .main_07e0 {
    max-width: 100%;
  }
}

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

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

.tooltip-old-eec8 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.tag-light-4a71 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.highlight-action-704e strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.summary-out-89a4 {
  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;
}

.easy_b593 {
  flex-shrink: 0;
}

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

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

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

.link-rough-5bbd,
.icon_3a47,
.module_9eab {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.link-rough-5bbd thead,
.icon_3a47 thead {
  background: var(--color-primary);
  color: white;
}

.link-rough-5bbd th,
.link-rough-5bbd td,
.icon_3a47 th,
.icon_3a47 td,
.module_9eab th,
.module_9eab td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .link-rough-5bbd th,
  .link-rough-5bbd td,
  .icon_3a47 th,
  .icon_3a47 td,
  .module_9eab th,
  .module_9eab td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .link-rough-5bbd,
  .icon_3a47,
  .module_9eab {
    min-width: 600px;
  }
}

.link-rough-5bbd th,
.icon_3a47 th,
.module_9eab th {
  font-weight: 600;
}

.link-rough-5bbd tbody tr:hover,
.icon_3a47 tbody tr:hover,
.module_9eab tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.solid-3c62 h4 {
  color: white;
}

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

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

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

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

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

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

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

.south-c30b:hover {
  text-decoration: underline;
}

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

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

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

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

.info-copper-42c4 {
  list-style: none;
  padding: 0;
}

.info-copper-42c4 li {
  padding: var(--space-xs) 0;
}

.hard-5753 {
  color: #4caf50;
}

.outline_861b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.dim-37d0 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.widget-medium-494a {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.carousel_3474 .tooltip_16f8 {
  width: 100%;
  background: white;
}

.focus_b1af .tooltip_16f8 {
  color: #667eea;
}

.large_c8a7 .tooltip_16f8 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .orange-c9d7 {
    padding: var(--space-md);
  }
  
  .easy_2ad6 {
    padding: var(--space-md);
  }
  
  .text-19c2 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.texture-upper-6736 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.tag-middle-8d82,
.paragraph-37b1,
.breadcrumb_4d0b,
.wide-b497 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.center-0ecc h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.panel-0d51 {
  border-color: var(--color-success);
}

.complex-6b0c {
  border-color: var(--color-warning);
}

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

.panel-0d51 .dropdown_easy_3195 {
  background: #e8f5e9;
  color: var(--color-success);
}

.complex-6b0c .dropdown_easy_3195 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.description-large-5f71 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.preview-under-398b {
  margin-top: var(--space-xxl);
}

.grid-thick-d53d {
  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);
}

.fixed_6cf5 {
  text-align: center;
}

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

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

.footer_a161 .progress_a392 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-c70d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.header_4558 {
  text-align: right;
}

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

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

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

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

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

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

.gas-f412 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.hard-4d95 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.paragraph-6f12 strong {
  color: var(--color-primary);
}

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

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

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

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

.heading-copper-50b6 {
  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);
}

.heading-copper-50b6:hover {
  background: var(--color-bg-alt);
}

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

.heading-copper-50b6[aria-expanded="true"] .frame_9a1a {
  transform: rotate(180deg);
}

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

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

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

.nav-gold-f648 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.fresh-3e04,
.nav_839c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.fresh-3e04 h4,
.nav_839c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.fresh-3e04 ul,
.nav_839c ul {
  list-style: none;
  padding: 0;
}

.fresh-3e04 li,
.nav_839c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.shadow-yellow-4a20 ul {
  list-style: none;
  padding: 0;
}

.shadow-yellow-4a20 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.dropdown-1552 {
  font-style: italic;
}

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

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

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

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

.search-silver-7d8e {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.basic_02eb {
  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) */
.bright-5e6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.hover-d9f0 a:hover {
  color: white;
}

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

.row-02d3 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);
}

.row-02d3 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.current_6506 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.current_6506 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .basic_02eb,
  .bright-5e6f {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.liquid-f3b2 .widget_0ede {
  color: #4caf50;
  font-size: 0.875rem;
}

.article-c981 {
  list-style: none;
  padding: 0;
}

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

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

.article-c981 a:hover {
  color: white;
}

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

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

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

.purple_f61d a:hover {
  color: white;
}

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

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

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

.caption-inner-5924 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.image-ddc0 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;
}

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

.text-bronze-f774:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .over_f74e {
    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;
  }
  
  .wrapper-black-675a {
    font-size: 2rem;
  }
  
  .link_over_4c1a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .copper-f0b1,
  .aside-over-cf76 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .notice-f22c,
  .paragraph-b862,
  .hero-90b5,
  .grid-thick-e74d,
  .tiny_026e,
  .layout-1fdf,
  .motion_b2d9,
  .basic_02eb,
  .bright-5e6f {
    grid-template-columns: 1fr;
  }
  
  .content-wide-680a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .slow_a46a {
    padding: var(--space-lg) 0;
  }
  
  .hover_01bc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hover_01bc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tooltip_16f8 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .content-wide-680a {
    grid-template-columns: 1fr;
  }
  
  .grid_current_3b8d,
  .search-silver-7d8e,
  .primary-under-6b38 {
    flex-direction: column;
    width: 100%;
  }
  
  .summary-white-2440,
  .column-current-06fa,
  .grid_current_3b8d .tooltip_16f8,
  .search-silver-7d8e .tooltip_16f8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wrapper-black-675a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .link_over_4c1a {
    font-size: 1.375rem;
  }
  
  .hidden-plasma-ffc0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container_d8a1,
  .small-2a1d,
  .table_8a22,
  .accordion_bottom_04d3,
  .south_10bf {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .liquid_dc33 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .clean-ad09 {
    gap: var(--space-xs);
  }
  
  .aside-07ae {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .info_3968 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer_a161 {
    width: 150px;
    height: 150px;
  }
  
  .bronze_1265 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .photo_motion_6d5c,
  .green_33f9,
  .grid_current_3b8d,
  .surface_4cc6,
  .banner_pro_5420,
  .preview-0540,
  .west-f5f3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .slow_a46a {
    page-break-inside: avoid;
  }
}

/* css-noise: 2a94 */
.shadow-element-w2 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
