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

.advanced_b293:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .mask-hot-39b2 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .mask-hot-39b2 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.picture-pro-ded6,
header,
.overlay-e67f,
.medium-806b,
.tag_wide_c610,
.texture_93fd,
.photo-focused-9ebe,
.hero_5ba0,
.row-iron-1aaa {
  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
   ============================================ */
.picture-pro-ded6 {
  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);
}

.orange-9a3b {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.grid_last_b482 {
  flex: 1;
}

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

.widget-south-2672 {
  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);
}

.widget-south-2672:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.widget-south-2672.fn-active-5935 {
  background: var(--color-primary);
  color: white;
}

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

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

.nav-cool-22a7 svg {
  transition: transform 0.2s ease;
}

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

.card-up-3cd9 {
  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;
}

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

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

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

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

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

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

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

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

.popup-b598 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .grid_last_b482 {
    display: none;
  }
  
  .primary_1c0f {
    display: flex;
  }
  
  .title_advanced_9a4f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .popup-b598,
  .info-5818 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .outline_be3a {
    position: relative;
  }
  
  .card-up-3cd9 {
    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;
  }
  
  .nav-cool-22a7[aria-expanded="true"] + .card-up-3cd9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slow_9a85 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .photo_dirty_e35f {
    gap: 8px;
  }
  
  .popup-b598 {
    display: none;
  }
  
  .info-5818 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .plasma_62d3 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .info-5818 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .info-5818 svg {
    width: 14px;
    height: 14px;
  }
  
  .tabs-warm-860d {
    gap: var(--space-sm);
  }
}

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

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

.north-16b0 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.north-16b0 svg {
  flex-shrink: 0;
}

.north-16b0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.north-16b0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wide-32b0 {
  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;
}

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

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

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

.logo-smooth-827a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.next-7abc {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .shadow-e26e {
    grid-template-columns: 1fr;
  }
  
  .footer-7403 {
    font-size: 1.75rem;
  }
  
  .hot_5e05 {
    order: -1;
    max-width: 100%;
  }
  
  .next-7abc {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-7403 {
    font-size: 1.5rem;
  }
  
  .mask-51d3 {
    font-size: 1rem;
  }
  
  .brown_f366 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .next-7abc {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask-mini-b6bd {
  list-style: none;
  counter-reset: toc-counter;
}

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

.mask-mini-b6bd 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);
}

.mask-mini-b6bd 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.photo-focused-9ebe {
  padding: var(--space-xxl) 0;
}

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

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

.narrow-4adf {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone_b008 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) {
  .input-next-afd8 {
    grid-template-columns: 1fr;
  }
  
  .rough_9a8d {
    font-size: 1.75rem;
  }
  
  .info_f0b7 {
    max-width: 100%;
  }
}

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

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

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

.liquid-03f4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.shadow-easy-9e2a {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero-fast-725e strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.photo_middle_2b65 {
  flex-shrink: 0;
}

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

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

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

.fast-c496,
.icon-right-d2e5,
.badge_bottom_90cb {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fast-c496 thead,
.icon-right-d2e5 thead {
  background: var(--color-primary);
  color: white;
}

.fast-c496 th,
.fast-c496 td,
.icon-right-d2e5 th,
.icon-right-d2e5 td,
.badge_bottom_90cb th,
.badge_bottom_90cb td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .fast-c496 th,
  .fast-c496 td,
  .icon-right-d2e5 th,
  .icon-right-d2e5 td,
  .badge_bottom_90cb th,
  .badge_bottom_90cb td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .fast-c496,
  .icon-right-d2e5,
  .badge_bottom_90cb {
    min-width: 600px;
  }
}

.fast-c496 th,
.icon-right-d2e5 th,
.badge_bottom_90cb th {
  font-weight: 600;
}

.fast-c496 tbody tr:hover,
.icon-right-d2e5 tbody tr:hover,
.badge_bottom_90cb tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.clean_876a h4 {
  color: white;
}

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

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

.component-60ec:last-child {
  border-bottom: none;
}

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

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

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

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

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

.sidebar-prev-48a3 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.shadow-warm-23fe {
  color: #4caf50;
}

.paragraph_84c7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-7f33 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.short-a291 .status-smooth-ee7d {
  width: 100%;
  background: white;
}

.gradient_5d20 .status-smooth-ee7d {
  color: #667eea;
}

.pink_7f43 .status-smooth-ee7d {
  color: #f5576c;
}

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

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

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

.banner-stale-cc8e {
  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);
}

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

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

@media (max-width: 768px) {
  .pink_9f2c {
    padding: var(--space-md);
  }
  
  .row_59ad {
    padding: var(--space-md);
  }
  
  .mini-372a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.mini-372a {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.list-gas-84f3,
.label-0089,
.filter_south_64d6,
.tag_9dd3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.nav_upper_eb68 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.fluid-f8ae {
  border-color: var(--color-success);
}

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

.block-selected-e0b2 {
  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);
}

.fluid-f8ae .block-selected-e0b2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.shadow_4fea .block-selected-e0b2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.medium-2c2d {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.avatar_dim_f787 {
  text-align: center;
}

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

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

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

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

.form-52e2 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.article-inner-7a50 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.gradient-6c00 {
  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;
}

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

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

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

.basic-420b {
  text-align: right;
}

.basic-420b .active-static-0862 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-old-fd86 strong {
  color: var(--color-primary);
}

.detail-bright-8bff {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.popup-static-6d20 {
  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);
}

.popup-static-6d20:hover {
  background: var(--color-bg-alt);
}

.preview-warm-0153 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.popup-static-6d20[aria-expanded="true"] .preview-warm-0153 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .image-top-8b68 {
    grid-template-columns: 1fr;
  }
}

.preview_923e,
.feature-smooth-76ac {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.preview_923e h4,
.feature-smooth-76ac h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.preview_923e ul,
.feature-smooth-76ac ul {
  list-style: none;
  padding: 0;
}

.preview_923e li,
.feature-smooth-76ac li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-red-ea93 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-e99d a:hover {
  color: white;
}

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

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

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

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

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

.primary-c3e1 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .cold-5255,
  .pattern-d35b {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.picture_d911 .basic_9b16 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.button_ed7a a:hover {
  color: white;
}

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

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

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

.up_65d6 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .in_2744 {
    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;
  }
  
  .footer-7403 {
    font-size: 2rem;
  }
  
  .rough_9a8d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .shadow-e26e,
  .input-next-afd8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .search_stale_3d6a,
  .notice-middle-3cd9,
  .center_b3d4,
  .frame_motion_f587,
  .image-top-8b68,
  .overlay_huge_169d,
  .light_90f7,
  .cold-5255,
  .pattern-d35b {
    grid-template-columns: 1fr;
  }
  
  .notice_stale_e6bd {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .photo-focused-9ebe {
    padding: var(--space-lg) 0;
  }
  
  .mask-mini-b6bd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .mask-mini-b6bd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .status-smooth-ee7d {
    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;
  }
  
  .notice_stale_e6bd {
    grid-template-columns: 1fr;
  }
  
  .logo-smooth-827a,
  .static_3f08,
  .inner-c162 {
    flex-direction: column;
    width: 100%;
  }
  
  .active_8d2b,
  .avatar_green_a78d,
  .logo-smooth-827a .status-smooth-ee7d,
  .static_3f08 .status-smooth-ee7d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .footer-7403 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .rough_9a8d {
    font-size: 1.375rem;
  }
  
  .video_lite_df70 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .logo-2a01,
  .last-8a5f,
  .gas-47c4,
  .middle-b789,
  .video-steel-8c59 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .feature_8b80 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .card-static-f40c {
    gap: var(--space-xs);
  }
  
  .north-16b0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .primary_3fb5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .content_d0cc {
    width: 150px;
    height: 150px;
  }
  
  .small_5fba {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture-pro-ded6,
  .overlay-e67f,
  .logo-smooth-827a,
  .east_8198,
  .hero_5ba0,
  .row-iron-1aaa,
  .primary_1c0f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .photo-focused-9ebe {
    page-break-inside: avoid;
  }
}

/* css-noise: 4bf4 */
.widget-item-g1 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
