/* ============================================
   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)
   ============================================ */
.overlay_cc1c {
  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;
}

.overlay_cc1c:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.tall_56c2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tall_56c2 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .tall_56c2 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.box-5d4d):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.box-5d4d,
header,
.logo-light-1517,
.mini_0c2c,
.preview-silver-09e6,
.full-a605,
.left-4b26,
.tabs-tall-be4a,
.text_e257 {
  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
   ============================================ */
.box-5d4d {
  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);
}

.feature-green-da7d {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.box-5d4d.middle_5d53 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.solid-c16b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.north_0c6b {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.photo_a8f5 img {
  height: 36px;
  width: auto;
  display: block;
}

.fresh-cb23 {
  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;
}

.cold-495c {
  flex: 1;
}

.top_7fdd {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.main-thick-d9c1 {
  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);
}

.main-thick-d9c1:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.main-thick-d9c1.light-4240 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.video-large-b34b {
  position: relative;
}

.heading-red-5da7 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.heading-red-5da7 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.video-large-b34b:hover .heading-red-5da7 svg,
.heading-red-5da7[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.cool-e01a {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.video-large-b34b:hover .cool-e01a {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.cool-e01a::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.purple_4ee0 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.purple_4ee0:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.purple_4ee0[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.texture-liquid-960f {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.accordion_752e {
  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;
}

.accordion_752e:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.accordion_752e svg {
  flex-shrink: 0;
}

/* Header Download Button */
.banner-449c {
  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;
}

.banner-449c: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);
}

.banner-449c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.background-1a8b {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.fresh_cec7 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.background-1a8b[aria-expanded="true"] .fresh_cec7:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.background-1a8b[aria-expanded="true"] .fresh_cec7:nth-child(2) {
  opacity: 0;
}

.background-1a8b[aria-expanded="true"] .fresh_cec7:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .cold-495c {
    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 */
  }

  .cold-495c::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .cold-495c.tag_2552 {
    display: block;
    right: 0;
  }
  
  .top_7fdd {
    flex-direction: column;
    gap: 0;
  }
  
  .main-thick-d9c1 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .cold-495c::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;
  }
  
  .cold-495c.tag_2552::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .cold-495c {
    display: none;
  }
  
  .background-1a8b {
    display: flex;
  }
  
  .fresh-cb23 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .accordion_752e,
  .banner-449c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .video-large-b34b {
    position: relative;
  }
  
  .cool-e01a {
    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;
  }
  
  .heading-red-5da7[aria-expanded="true"] + .cool-e01a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .purple_4ee0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .texture-liquid-960f {
    gap: 8px;
  }
  
  .accordion_752e {
    display: none;
  }
  
  .banner-449c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .photo_a8f5 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .banner-449c {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .banner-449c svg {
    width: 14px;
    height: 14px;
  }
  
  .solid-c16b {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.logo-light-1517 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.dropdown-wood-6db3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.modal-old-1d88 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-old-1d88 svg {
  flex-shrink: 0;
}

.modal-old-1d88 a {
  color: var(--color-primary);
  text-decoration: none;
}

.modal-old-1d88 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .dropdown-wood-6db3 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.mini_0c2c {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.item_selected_8e02 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .item_selected_8e02 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.fast_1adb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.fast_1adb a {
  color: var(--color-primary);
  text-decoration: none;
}

.fast_1adb a:hover {
  text-decoration: underline;
}

.notice-hovered-8a0c {
  color: var(--color-text-lighter);
}

.alert_0153 {
  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) {
  .alert_0153 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .alert_0153 {
    font-size: 1.5rem;
  }
}

.primary_fd71 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.brown_fcc6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .brown_fcc6 {
    grid-template-columns: 1fr;
  }
}

.bronze-8886 {
  display: flex;
  gap: var(--space-sm);
}

.primary-smooth-71c3 {
  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;
}

.table-north-19f0 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.table-north-19f0 strong {
  font-weight: 600;
  color: var(--color-text);
}

.table-north-19f0 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.gallery-warm-d6f0 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.texture_fc46 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orange_9be2 {
  position: relative;
  text-align: center;
}

.orange_9be2 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.cold-1d4c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.motion-49f6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.notification_8d08 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.green-75cd {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.input-cool-33ed {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.content_04b9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .item_selected_8e02 {
    grid-template-columns: 1fr;
  }
  
  .alert_0153 {
    font-size: 1.75rem;
  }
  
  .texture_fc46 {
    order: -1;
    max-width: 100%;
  }
  
  .orange_9be2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .alert_0153 {
    font-size: 1.5rem;
  }
  
  .primary_fd71 {
    font-size: 1rem;
  }
  
  .fast_1adb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .orange_9be2 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.east-8f4c {
  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;
}

.right-40ac {
  background: var(--color-primary);
  color: white;
}

.right-40ac:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.main-white-4b17 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.main-white-4b17:hover {
  background: var(--color-primary);
  color: white;
}

.aside_ada8 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.aside_ada8:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.message_5d66 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.dark-4098 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.preview-silver-09e6 {
  padding: var(--space-xl) 0;
  background: white;
}

.wood-a71d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.progress-next-bbe7 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.progress-next-bbe7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bottom-48d5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.in_18d5 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.heading-e6ea {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.full-a605 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.easy_5a4d {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.widget-e7f3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.pattern-6027 {
  list-style: none;
  counter-reset: toc-counter;
}

.pattern-6027 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.pattern-6027 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);
}

.pattern-6027 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;
}

.pattern-6027 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.left-4b26 {
  padding: var(--space-xxl) 0;
}

.over-0cf8 {
  background: var(--color-bg-section);
}

.filter-adf1 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.light_4692 {
  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);
}

.button_fb39 {
  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);
}

.mask_8e08 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.row-9390 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .row-9390 {
    grid-template-columns: 1fr 300px;
  }
}

.hard_3545 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hard_3545 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hard_3545 pre,
.hard_3545 code {
  overflow-x: auto;
  max-width: 100%;
}

.hard_3545 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);
}

.hard_3545 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.hard_3545 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.hard_3545 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hard_3545 ul,
.hard_3545 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.hard_3545 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.hard_3545 strong {
  font-weight: 600;
  color: var(--color-text);
}

.hard_3545 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hard_3545 a:hover {
  color: var(--color-primary-dark);
}

.carousel_green_ca92 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.carousel_green_ca92 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.carousel_green_ca92 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) {
  .row-9390 {
    grid-template-columns: 1fr;
  }
  
  .button_fb39 {
    font-size: 1.75rem;
  }
  
  .hard_3545 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .button_fb39 {
    font-size: 1.5rem;
  }
  
  .hard_3545 h3 {
    font-size: 1.375rem;
  }
  
  .hard_3545 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.component-clean-4bab {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.green-b6cc {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.row_aa81 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.column-1f3c {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.slider-bright-db11 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.orange-b096 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.preview-old-f024 {
  flex-shrink: 0;
}

.caption-0a83 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.tertiary-slow-8a1d {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .tertiary-slow-8a1d {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.input_full_cc54,
.link_huge_50d7,
.list_gold_836d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.input_full_cc54 thead,
.link_huge_50d7 thead {
  background: var(--color-primary);
  color: white;
}

.input_full_cc54 th,
.input_full_cc54 td,
.link_huge_50d7 th,
.link_huge_50d7 td,
.list_gold_836d th,
.list_gold_836d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .input_full_cc54 th,
  .input_full_cc54 td,
  .link_huge_50d7 th,
  .link_huge_50d7 td,
  .list_gold_836d th,
  .list_gold_836d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .input_full_cc54,
  .link_huge_50d7,
  .list_gold_836d {
    min-width: 600px;
  }
}

.input_full_cc54 th,
.link_huge_50d7 th,
.list_gold_836d th {
  font-weight: 600;
}

.input_full_cc54 tbody tr:hover,
.link_huge_50d7 tbody tr:hover,
.list_gold_836d tbody tr:hover {
  background: var(--color-bg-alt);
}

.progress_4114 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.secondary_7686 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.hidden_96ef {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.hidden_96ef h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.info-a11b {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.info-a11b h4 {
  color: white;
}

.top_d72b {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.table_ae21 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.table_ae21:last-child {
  border-bottom: none;
}

.table_ae21 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.table_ae21 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.selected-4497 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.highlight_d43f {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.highlight_d43f:hover {
  text-decoration: underline;
}

.motion_7353 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.overlay_stone_f74b {
  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);
}

.overlay_stone_f74b span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.filter-north-1e90 {
  font-weight: 600;
  color: white;
}

.list-cc86 {
  list-style: none;
  padding: 0;
}

.list-cc86 li {
  padding: var(--space-xs) 0;
}

.medium_a68d {
  color: #4caf50;
}

.surface-1602 {
  color: #ff9800;
}

.heading_iron_d260 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.status-072e {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.media_silver_d0f7 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.column_621e {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.orange-97df {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.shade_middle_ca95 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.focus_971b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .focus_971b {
    grid-template-columns: 1fr;
  }
}

.card-north-6b7c {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.card-north-6b7c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.row_6f4d {
  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;
}

.card-north-6b7c h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.card-north-6b7c p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.slider-hard-dd6f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.filter-north-1e90 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.out-5836 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.mask_gas_37f8 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.mask_gas_37f8 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.solid-856f {
  max-width: 900px;
  margin: 0 auto;
}

.logo-light-b557 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.dim_c55c {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .dim_c55c {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.pink_9201 {
  margin-top: var(--space-xxl);
}

.pink_9201 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.focused-8d23 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .focused-8d23 {
    grid-template-columns: 1fr;
  }
}

.easy_6099 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.light_db4a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.modal_ffd5 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.easy_6099 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.easy_6099 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.easy_6099 li {
  padding: var(--space-xs) 0;
  color: white;
}

.easy_6099 .east-8f4c {
  width: 100%;
  background: white;
}

.light_db4a .east-8f4c {
  color: #667eea;
}

.modal_ffd5 .east-8f4c {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.fixed-a480 {
  max-width: 900px;
  margin: 0 auto;
}

.list-dc8d {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.tag-dark-1233 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.tabs-8007 {
  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);
}

.tag-dark-1233 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.frame_4178 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .tag-dark-1233 {
    padding: var(--space-md);
  }
  
  .frame_4178 {
    padding: var(--space-md);
  }
  
  .active-6297 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.tabs_bb13 ol,
.tabs_bb13 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.tabs_bb13 li {
  margin-bottom: var(--space-sm);
}

.tabs_bb13 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.liquid-4daa {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.header-prev-05bf {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.active-6297 {
  margin-top: var(--space-lg);
  text-align: center;
}

.active-6297 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.content-plasma-1732,
.link-out-3f61,
.bronze-d162,
.slider_first_6827 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.outline_bottom_801e {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.notification-blue-86f1 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.overlay_2fe9 {
  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) {
  .overlay_2fe9 {
    font-size: 0.625rem;
  }
}

.dynamic_883e {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.dynamic_883e:hover {
  background: var(--color-primary-dark);
}

.disabled-medium-e64f {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.disabled-medium-e64f h4 {
  margin-bottom: var(--space-md);
}

.outline_stale_09cb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.filter_inner_689a {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.aside-4908 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .aside-4908 {
    grid-template-columns: 1fr;
  }
}

.content_bronze_68d1 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.aside_narrow_8108 {
  border-color: var(--color-success);
}

.hover-2626 {
  border-color: var(--color-warning);
}

.white-4e60 {
  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);
}

.aside_narrow_8108 .white-4e60 {
  background: #e8f5e9;
  color: var(--color-success);
}

.hover-2626 .white-4e60 {
  background: #fff3e0;
  color: var(--color-warning);
}

.content_bronze_68d1 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.content_bronze_68d1 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.dim-9bc9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.accent-79b4 {
  margin: var(--space-xxl) 0;
}

.accent-79b4 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.accent-79b4 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.surface-64a9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .surface-64a9 {
    grid-template-columns: 1fr;
  }
}

.secondary-59e9 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.secondary-59e9 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.preview_2edb {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.preview_2edb input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.secondary_purple_c555 {
  margin-top: var(--space-xxl);
}

.simple-6911 {
  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);
}

.picture_stale_ed8f {
  text-align: center;
}

.dropdown_b72a {
  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);
}

.gradient-gold-b4c1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.dropdown_b72a .filter-north-1e90 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.mask-177a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.east_6a0c p {
  margin-bottom: var(--space-md);
}

.texture-5f0f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .simple-6911 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.highlight_brown_c462 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.main-27c4 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.pink-04cb {
  margin-bottom: var(--space-xl);
}

.tabs-9976 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.thumbnail-79cf {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.hidden-bd6f {
  color: var(--color-text-light);
}

.layout_pressed_f30f {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-a239 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.search_f8a2 {
  font-weight: 600;
  color: var(--color-text);
}

.carousel-4eb7 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.description-c3c2 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.row-02ce {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.modal-a2e1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.bright_eea0 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.cold-9844 {
  border: 2px solid #4caf50;
}

.component-7f8c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.thick_962a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.list_8ef4 {
  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;
}

.preview_pro_ca78 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.dropdown_f87f {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.gradient-left-2e64 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.focus-fresh-6309 {
  text-align: right;
}

.focus-fresh-6309 .wrapper-silver-fef6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.layout_6888 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.blue-f73f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.blue-f73f p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.logo-106f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.pattern-921f {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.element_cc59 {
  background: #e8f5e9;
  color: #2e7d32;
}

.simple-af56 {
  background: #e3f2fd;
  color: #1565c0;
}

.badge_outer_7582 {
  background: #fff3e0;
  color: #e65100;
}

.surface_fc54 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.surface_fc54 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.secondary-9879 {
  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);
}

.secondary-9879:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.description_first_fb9c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.carousel_3d7f {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.carousel_3d7f strong {
  color: var(--color-primary);
}

.sidebar-north-19c0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.article_huge_aeb4 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.huge_4483 {
  max-width: 900px;
  margin: 0 auto;
}

.chip-bf54 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.yellow-8a92 {
  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);
}

.yellow-8a92:hover {
  background: var(--color-bg-alt);
}

.frame-6689 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.yellow-8a92[aria-expanded="true"] .frame-6689 {
  transform: rotate(180deg);
}

.paper_afed {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.paper_afed h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.paper_afed ul,
.paper_afed ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.paper_afed li {
  margin-bottom: var(--space-xs);
}

.plasma-de2c {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.media_outer_c74b {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.plasma-de2c code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.huge-629d {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.frame-narrow-851d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.light_ae00 {
  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);
}

.glass_ff15 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.east_1a25 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .east_1a25 {
    grid-template-columns: 1fr;
  }
}

.row_7103,
.tooltip_6282 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.row_7103 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.tooltip_6282 {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.row_7103 h4,
.tooltip_6282 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.row_7103 ul,
.tooltip_6282 ul {
  list-style: none;
  padding: 0;
}

.row_7103 li,
.tooltip_6282 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.pro-e985 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .pro-e985 {
    grid-template-columns: 1fr;
  }
}

.surface-1ffb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.disabled-complex-1325 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.last-0edd {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.surface-1ffb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.surface-1ffb ul {
  list-style: none;
  padding: 0;
}

.surface-1ffb li {
  padding: var(--space-xs) 0;
  color: white;
}

.component_hard_8ff2 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.component_hard_8ff2 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.component_hard_8ff2 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.shadow-orange-fe25 {
  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);
}

.large_e5af {
  font-style: italic;
}

.hidden_da09 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.box_brown_7502 {
  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;
}

.box_brown_7502 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.box_brown_7502 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.action-9443 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.tabs-tall-be4a {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.lite-2157 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.easy_bf74 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .easy_bf74 {
    grid-template-columns: 1fr;
  }
}

.liquid_08bc {
  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);
}

.liquid_08bc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.light_253e {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.liquid_08bc h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.liquid_08bc p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.text_e257 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.dark-1627 {
  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) */
.backdrop-upper-2739 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.column_soft_8360 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.column_soft_8360 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.pagination_advanced_b218 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination_advanced_b218 li {
  margin-bottom: var(--space-xs);
}

.pagination_advanced_b218 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.pagination_advanced_b218 a:hover {
  color: white;
}

.over_70d5 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.over_70d5 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);
}

.over_70d5 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.article_gold_7b2d {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.article_gold_7b2d a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.article_gold_7b2d a:hover {
  color: white;
}

.container_71cf > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .dark-1627,
  .backdrop-upper-2739 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.tertiary-light-972e h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.frame-lower-aaf7 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.warm-9fb4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.warm-9fb4 .bronze-8886 {
  color: #4caf50;
  font-size: 0.875rem;
}

.focused_9c71 {
  list-style: none;
  padding: 0;
}

.focused_9c71 li {
  margin-bottom: var(--space-xs);
}

.focused_9c71 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.focused_9c71 a:hover {
  color: white;
}

.badge-6fc8 {
  list-style: none;
  padding: 0;
}

.badge-6fc8 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.badge-6fc8 a {
  color: #b0b0b0;
  text-decoration: none;
}

.badge-6fc8 a:hover {
  color: white;
}

.container_71cf {
  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);
}

.wide-9285 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.wide-9285 a {
  color: #4caf50;
  text-decoration: none;
}

.box-black-019a {
  font-size: 0.75rem;
  color: #666666;
}

.white_173a {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.white_173a a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.white_173a 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;
}

.cold-b797 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.cold-b797:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container_71cf {
    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;
  }
  
  .alert_0153 {
    font-size: 2rem;
  }
  
  .button_fb39 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .item_selected_8e02,
  .row-9390 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focus_971b,
  .aside-4908,
  .focused-8d23,
  .surface-64a9,
  .east_1a25,
  .pro-e985,
  .easy_bf74,
  .dark-1627,
  .backdrop-upper-2739 {
    grid-template-columns: 1fr;
  }
  
  .wood-a71d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .left-4b26 {
    padding: var(--space-lg) 0;
  }
  
  .pattern-6027 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pattern-6027 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .east-8f4c {
    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;
  }
  
  .wood-a71d {
    grid-template-columns: 1fr;
  }
  
  .gallery-warm-d6f0,
  .action-9443,
  .outline_stale_09cb {
    flex-direction: column;
    width: 100%;
  }
  
  .message_5d66,
  .dark-4098,
  .gallery-warm-d6f0 .east-8f4c,
  .action-9443 .east-8f4c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .alert_0153 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .button_fb39 {
    font-size: 1.375rem;
  }
  
  .bottom-48d5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .progress-next-bbe7,
  .card-north-6b7c,
  .hidden_96ef,
  .bright_eea0,
  .list-dc8d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .overlay_2fe9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dropdown-wood-6db3 {
    gap: var(--space-xs);
  }
  
  .modal-old-1d88 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .overlay_stone_f74b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dropdown_b72a {
    width: 150px;
    height: 150px;
  }
  
  .gradient-gold-b4c1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .box-5d4d,
  .logo-light-1517,
  .gallery-warm-d6f0,
  .box_brown_7502,
  .tabs-tall-be4a,
  .text_e257,
  .background-1a8b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .left-4b26 {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.tiny_7b8b {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 9ef8 */
.ghost-box-l1 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
