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

.layout-narrow-fa03:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.wrapper-9cc0,
header,
.button-slow-736a,
.red_606c,
.component-3917,
.heading_active_5fd6,
.detail_pink_6a9b,
.pattern_purple_2ca6,
.cool_7c12 {
  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
   ============================================ */
.wrapper-9cc0 {
  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);
}

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

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

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

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

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

.prev-182c img {
  height: 36px;
  width: auto;
  display: block;
}

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

.fast_697f {
  flex: 1;
}

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

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

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

.outline_1306.fn-active-6049 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.notification-advanced-0e79 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.wrapper_3df2 svg {
  flex-shrink: 0;
}

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

.full-3b09: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);
}

.full-3b09 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.dynamic_7455[aria-expanded="true"] .backdrop-tall-a509:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .fast_697f {
    display: none;
  }
  
  .dynamic_7455 {
    display: flex;
  }
  
  .text_aa1d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .wrapper_3df2,
  .full-3b09 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tooltip_7bfc {
    position: relative;
  }
  
  .media_smooth_ba9a {
    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;
  }
  
  .footer_over_2769[aria-expanded="true"] + .media_smooth_ba9a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .aside-7bcf {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .notification-advanced-0e79 {
    gap: 8px;
  }
  
  .wrapper_3df2 {
    display: none;
  }
  
  .full-3b09 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .prev-182c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.row-f85a svg {
  flex-shrink: 0;
}

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

.row-f85a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.banner-f620 a:hover {
  text-decoration: underline;
}

.old-6bb5 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.notice-626f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.banner-current-4bf9 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.description-8b60 {
  position: relative;
  text-align: center;
}

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

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

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

.primary-huge-85e2 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .heading_7e89 {
    grid-template-columns: 1fr;
  }
  
  .tall_ca27 {
    font-size: 1.75rem;
  }
  
  .banner-current-4bf9 {
    order: -1;
    max-width: 100%;
  }
  
  .description-8b60 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tall_ca27 {
    font-size: 1.5rem;
  }
  
  .title_59d3 {
    font-size: 1rem;
  }
  
  .banner-f620 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .description-8b60 {
    max-width: 250px;
  }
}

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

.block-down-a32d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer-6df9 {
  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);
}

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

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

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

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

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

.alert-59f3 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.alert-59f3 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);
}

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

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

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

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

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

.alert-59f3 strong {
  font-weight: 600;
  color: var(--color-text);
}

.alert-59f3 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.alert-59f3 a:hover {
  color: var(--color-primary-dark);
}

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

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

.gas_3a07 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) {
  .text_action_6626 {
    grid-template-columns: 1fr;
  }
  
  .gallery_fresh_f35f {
    font-size: 1.75rem;
  }
  
  .alert-59f3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery_fresh_f35f {
    font-size: 1.5rem;
  }
  
  .alert-59f3 h3 {
    font-size: 1.375rem;
  }
  
  .alert-59f3 h4 {
    font-size: 1.125rem;
  }
}

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

.hot-43eb {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.info-outer-c738 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.primary_last_6095 {
  flex-shrink: 0;
}

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

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

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

.banner-49ae,
.dynamic_1ad9,
.mask_2553 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.banner-49ae thead,
.dynamic_1ad9 thead {
  background: var(--color-primary);
  color: white;
}

.banner-49ae th,
.banner-49ae td,
.dynamic_1ad9 th,
.dynamic_1ad9 td,
.mask_2553 th,
.mask_2553 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .banner-49ae th,
  .banner-49ae td,
  .dynamic_1ad9 th,
  .dynamic_1ad9 td,
  .mask_2553 th,
  .mask_2553 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .banner-49ae,
  .dynamic_1ad9,
  .mask_2553 {
    min-width: 600px;
  }
}

.banner-49ae th,
.dynamic_1ad9 th,
.mask_2553 th {
  font-weight: 600;
}

.banner-49ae tbody tr:hover,
.dynamic_1ad9 tbody tr:hover,
.mask_2553 tbody tr:hover {
  background: var(--color-bg-alt);
}

.carousel-cold-9baf {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

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

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

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

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

.backdrop-125c h4 {
  color: white;
}

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

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

.pagination-south-620b:last-child {
  border-bottom: none;
}

.pagination-south-620b dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.pagination-south-620b dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

.active-cc5b {
  font-weight: 600;
  color: white;
}

.east-0f20 {
  list-style: none;
  padding: 0;
}

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

.notification_72a0 {
  color: #4caf50;
}

.menu-short-162e {
  color: #ff9800;
}

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

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

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

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

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

.focus-9aed {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-left-b2f1 .action-b6a0 {
  width: 100%;
  background: white;
}

.solid_cc9c .action-b6a0 {
  color: #667eea;
}

.surface-gold-5d94 .action-b6a0 {
  color: #f5576c;
}

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

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

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

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

.dim-6e17 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .dim-6e17 {
    padding: var(--space-md);
  }
  
  .label-2732 {
    padding: var(--space-md);
  }
  
  .border-2f16 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.first-8ba8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.solid-46e9,
.hidden_1dd0,
.feature_70cc,
.video_narrow_20bf {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.tag-center-72ce {
  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) {
  .tag-center-72ce {
    font-size: 0.625rem;
  }
}

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

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

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

.box-hovered-9170 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.row-pink-6540 {
  border-color: var(--color-success);
}

.preview-stale-d897 {
  border-color: var(--color-warning);
}

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

.row-pink-6540 .component_6c3f {
  background: #e8f5e9;
  color: var(--color-success);
}

.preview-stale-d897 .component_6c3f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .badge-green-85ab {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.tooltip_new_21d9 {
  text-align: center;
}

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

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

.picture_small_370e .active-cc5b {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.motion-23e9 p {
  margin-bottom: var(--space-md);
}

.media-black-7e8b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.label-wide-9895 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.background-d637 {
  border: 2px solid #4caf50;
}

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

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

.item-down-ddcb {
  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;
}

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

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

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

.easy-47e4 {
  text-align: right;
}

.easy-47e4 .steel_b3ed {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hero-9ce6 {
  background: #e8f5e9;
  color: #2e7d32;
}

.container-pink-d249 {
  background: #e3f2fd;
  color: #1565c0;
}

.border-d8b8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled_medium_bf42 ul,
.progress_over_28b9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.logo-north-8055 {
  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);
}

.component_current_768b {
  font-style: italic;
}

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

.list-cool-db1a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.status-19d1 {
  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) */
.aside-green-a5fa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.thick-5830 a:hover {
  color: white;
}

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

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

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

.card-solid-6628 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.card-solid-6628 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .status-19d1,
  .aside-green-a5fa {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.last_11f1 .active_dynamic_0131 {
  color: #4caf50;
  font-size: 0.875rem;
}

.filter-b642 {
  list-style: none;
  padding: 0;
}

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

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

.filter-b642 a:hover {
  color: white;
}

.media-current-8256 {
  list-style: none;
  padding: 0;
}

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

.media-current-8256 a {
  color: #b0b0b0;
  text-decoration: none;
}

.media-current-8256 a:hover {
  color: white;
}

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

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

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

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

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

.banner-24ca a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.banner-24ca 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;
}

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

.upper-9772:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .motion_891b {
    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;
  }
  
  .tall_ca27 {
    font-size: 2rem;
  }
  
  .gallery_fresh_f35f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading_7e89,
  .text_action_6626 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .article_65da,
  .clean-cd49,
  .lower_b9e6,
  .badge-green-85ab,
  .gallery_over_ae16,
  .advanced-c72a,
  .thick-df9a,
  .status-19d1,
  .aside-green-a5fa {
    grid-template-columns: 1fr;
  }
  
  .popup_green_a306 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .detail_pink_6a9b {
    padding: var(--space-lg) 0;
  }
  
  .overlay_cdad li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .overlay_cdad li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .action-b6a0 {
    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;
  }
  
  .popup_green_a306 {
    grid-template-columns: 1fr;
  }
  
  .notice-626f,
  .status_b00c,
  .status-2a2d {
    flex-direction: column;
    width: 100%;
  }
  
  .middle-d743,
  .wrapper-5469,
  .notice-626f .action-b6a0,
  .status_b00c .action-b6a0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tall_ca27 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gallery_fresh_f35f {
    font-size: 1.375rem;
  }
  
  .orange_c154 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .button-paper-bf1c,
  .photo-5b64,
  .header-3a89,
  .popup_liquid_1750,
  .progress_red_a4e3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tag-center-72ce {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .north_80d1 {
    gap: var(--space-xs);
  }
  
  .row-f85a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .smooth_116b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .picture_small_370e {
    width: 150px;
    height: 150px;
  }
  
  .aside_3034 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .wrapper-9cc0,
  .button-slow-736a,
  .notice-626f,
  .list-cool-db1a,
  .pattern_purple_2ca6,
  .cool_7c12,
  .dynamic_7455 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .detail_pink_6a9b {
    page-break-inside: avoid;
  }
}

/* css-noise: fce4 */
.widget-item-e0 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
