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

.pink-1a98:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.icon-tall-1928,
header,
.thumbnail_b900,
.out_33fe,
.easy_507f,
.primary-prev-cca6,
.next-2ef0,
.dynamic-948e,
.gas-daa8 {
  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
   ============================================ */
.icon-tall-1928 {
  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);
}

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

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

/* Scrolled state */
.icon-tall-1928.upper-0995 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.focused-61d9 {
  flex: 1;
}

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

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

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

.bright_65fe.fn-active-d9d2 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.gallery-6f9f {
  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;
}

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

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

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

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

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

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

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

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

.dropdown-paper-be99 svg {
  flex-shrink: 0;
}

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

.pink-1ab9: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);
}

.pink-1ab9 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .focused-61d9 {
    display: none;
  }
  
  .column_65a9 {
    display: flex;
  }
  
  .liquid_c0c3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dropdown-paper-be99,
  .pink-1ab9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .chip_out_3c5c {
    position: relative;
  }
  
  .gallery-6f9f {
    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;
  }
  
  .title_tiny_d1f5[aria-expanded="true"] + .gallery-6f9f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .down-c411 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .main-1708 {
    gap: 8px;
  }
  
  .dropdown-paper-be99 {
    display: none;
  }
  
  .pink-1ab9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .module_c063 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.clean_8d34 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.smooth-1bef {
  color: var(--color-text-lighter);
}

.notification_east_50b2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .notification_east_50b2 {
    font-size: 2rem;
  }
}

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

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

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

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

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

.notice-slow-a292 {
  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;
}

.notice-center-5747 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notice-center-5747 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.paragraph_center_9f45 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .plasma-2f06 {
    grid-template-columns: 1fr;
  }
  
  .notification_east_50b2 {
    font-size: 1.75rem;
  }
  
  .message_inner_e9c9 {
    order: -1;
    max-width: 100%;
  }
  
  .paragraph_center_9f45 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification_east_50b2 {
    font-size: 1.5rem;
  }
  
  .photo_79ab {
    font-size: 1rem;
  }
  
  .media_fast_c298 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .paragraph_center_9f45 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.box-huge-b57f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.shade-4adb {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

.notice-liquid-0b5e {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.status-21a3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.status-21a3 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);
}

.status-21a3 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;
}

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

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

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

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

.item-soft-fe90 {
  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);
}

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

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

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

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

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

.module-88de img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.module-88de 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);
}

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

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

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

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

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

.module-88de strong {
  font-weight: 600;
  color: var(--color-text);
}

.module-88de a {
  color: var(--color-primary);
  text-decoration: underline;
}

.module-88de a:hover {
  color: var(--color-primary-dark);
}

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

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

.gallery_glass_8325 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) {
  .link_under_1b52 {
    grid-template-columns: 1fr;
  }
  
  .focused_7d03 {
    font-size: 1.75rem;
  }
  
  .module-88de {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .focused_7d03 {
    font-size: 1.5rem;
  }
  
  .module-88de h3 {
    font-size: 1.375rem;
  }
  
  .module-88de h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.header-1ef9 {
  flex-shrink: 0;
}

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

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

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

.main-e4d3,
.short_88f7,
.shade_120a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.main-e4d3 thead,
.short_88f7 thead {
  background: var(--color-primary);
  color: white;
}

.main-e4d3 th,
.main-e4d3 td,
.short_88f7 th,
.short_88f7 td,
.shade_120a th,
.shade_120a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .main-e4d3 th,
  .main-e4d3 td,
  .short_88f7 th,
  .short_88f7 td,
  .shade_120a th,
  .shade_120a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .main-e4d3,
  .short_88f7,
  .shade_120a {
    min-width: 600px;
  }
}

.main-e4d3 th,
.short_88f7 th,
.shade_120a th {
  font-weight: 600;
}

.main-e4d3 tbody tr:hover,
.short_88f7 tbody tr:hover,
.shade_120a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.south-0a4e h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.popup-copper-7431 {
  list-style: none;
  padding: 0;
}

.popup-copper-7431 li {
  padding: var(--space-xs) 0;
}

.image-wide-6744 {
  color: #4caf50;
}

.surface_ac97 {
  color: #ff9800;
}

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

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

.form-fast-3c65 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_2af1 .bottom-8c2a {
  width: 100%;
  background: white;
}

.tertiary_3a07 .bottom-8c2a {
  color: #667eea;
}

.aside_2068 .bottom-8c2a {
  color: #f5576c;
}

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

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

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

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

.aside-5e4c h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.main-1b79 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .aside-5e4c {
    padding: var(--space-md);
  }
  
  .main-1b79 {
    padding: var(--space-md);
  }
  
  .basic-0340 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.thumbnail_34de,
.heading-warm-ed6c,
.wood_81ef,
.status_gold_fb23 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.description-fresh-8f88:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

@media (max-width: 768px) {
  .list-plasma-717a {
    grid-template-columns: 1fr;
  }
}

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

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

.texture-solid-c9a0 {
  border-color: var(--color-warning);
}

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

.sidebar_acda .cool-1319 {
  background: #e8f5e9;
  color: var(--color-success);
}

.texture-solid-c9a0 .cool-1319 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.solid_fe94 {
  text-align: center;
}

.row-up-6706 {
  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);
}

.notification-under-3c94 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.row-up-6706 .gold_a7a0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.pagination-fast-0ddc {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

.list-bottom-951d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.complex-61b8 {
  margin-bottom: var(--space-xl);
}

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

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

.item-slow-b9e6 {
  color: var(--color-text-light);
}

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

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

.notification-0c37 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.smooth-a50a {
  border: 2px solid #4caf50;
}

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

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

.detail-8cee {
  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;
}

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

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

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

.dirty-d16f {
  text-align: right;
}

.dirty-d16f .row_dim_5c1e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.active-center-25c2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

.block-a9e1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.container-outer-31c9 {
  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);
}

.container-outer-31c9:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.next-74f1 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.right_3e1a[aria-expanded="true"] .tabs-df15 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.aside-out-a942 {
  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);
}

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

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

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

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

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

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

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

.soft_e3a6 ul,
.fluid_5234 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-red-6cde {
  font-style: italic;
}

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

.static-88bd {
  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;
}

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

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

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

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

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

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

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

.label-2c5d {
  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);
}

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

.detail-short-720e {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.white-45db {
  list-style: none;
  padding: 0;
  margin: 0;
}

.white-45db li {
  margin-bottom: var(--space-xs);
}

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

.white-45db a:hover {
  color: white;
}

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

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

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

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

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

.active_3528 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .section-dynamic-87fe,
  .hidden_paper_0d5b {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.dynamic_cc8b .menu_west_f513 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hover-stone-6d93 {
  list-style: none;
  padding: 0;
}

.hover-stone-6d93 li {
  margin-bottom: var(--space-xs);
}

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

.hover-stone-6d93 a:hover {
  color: white;
}

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

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

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

.tabs_b1e6 a:hover {
  color: white;
}

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

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

.red-36c0 a {
  color: #4caf50;
  text-decoration: none;
}

.description-over-3e92 {
  font-size: 0.75rem;
  color: #666666;
}

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

.detail-left-e0b5 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.detail-left-e0b5 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;
}

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

.description-ba2e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .notification_upper_0f5f {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .notification_east_50b2 {
    font-size: 2rem;
  }
  
  .focused_7d03 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .plasma-2f06,
  .link_under_1b52 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sort-lite-b098,
  .list-plasma-717a,
  .notification_red_a550,
  .detail-89ba,
  .panel-84d2,
  .dirty-6a56,
  .pro-9573,
  .section-dynamic-87fe,
  .hidden_paper_0d5b {
    grid-template-columns: 1fr;
  }
  
  .photo_hot_9204 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .next-2ef0 {
    padding: var(--space-lg) 0;
  }
  
  .status-21a3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .status-21a3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .bottom-8c2a {
    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;
  }
  
  .photo_hot_9204 {
    grid-template-columns: 1fr;
  }
  
  .over-d764,
  .small_6af6,
  .new_626c {
    flex-direction: column;
    width: 100%;
  }
  
  .box-huge-b57f,
  .shade-4adb,
  .over-d764 .bottom-8c2a,
  .small_6af6 .bottom-8c2a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification_east_50b2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .focused_7d03 {
    font-size: 1.375rem;
  }
  
  .light_bb2b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .plasma-37e3,
  .logo_advanced_b518,
  .wrapper_wide_a079,
  .accent-clean-73a4,
  .center_2186 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget_802e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .thick_98cc {
    gap: var(--space-xs);
  }
  
  .clean_8d34 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gas_786e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .row-up-6706 {
    width: 150px;
    height: 150px;
  }
  
  .notification-under-3c94 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .icon-tall-1928,
  .thumbnail_b900,
  .over-d764,
  .static-88bd,
  .dynamic-948e,
  .gas-daa8,
  .column_65a9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .next-2ef0 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1046 */
.widget-item-r0 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
