/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.border_3f7c {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.border_3f7c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.shadow-8510,
header,
.carousel-024a,
.layout-blue-ecdd,
.link_95da,
.upper_eb03,
.active_3af9,
.form_4671,
.row_dirty_aae5 {
  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
   ============================================ */
.shadow-8510 {
  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);
}

.card-c6d3 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.badge-south-a8c9 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.video_2e73 {
  flex: 1;
}

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

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

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

.paper_aa32.fn-active-561a {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.active-6645 {
  position: relative;
}

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

.modal-north-71b7 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.box-f42b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .video_2e73 {
    display: none;
  }
  
  .picture_rough_25cf {
    display: flex;
  }
  
  .frame_8052 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .box-f42b,
  .tertiary_fresh_2114 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .active-6645 {
    position: relative;
  }
  
  .next-ed6a {
    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;
  }
  
  .modal-north-71b7[aria-expanded="true"] + .next-ed6a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .form-short-66d3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .highlight_4e9f {
    gap: 8px;
  }
  
  .box-f42b {
    display: none;
  }
  
  .tertiary_fresh_2114 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .badge-south-a8c9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.active-bcec svg {
  flex-shrink: 0;
}

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

.active-bcec a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.cool-40b1 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.icon-last-dc6d {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-e917 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .dim-f23a {
    grid-template-columns: 1fr;
  }
  
  .focus-a257 {
    font-size: 1.75rem;
  }
  
  .icon-last-dc6d {
    order: -1;
    max-width: 100%;
  }
  
  .glass-e917 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .focus-a257 {
    font-size: 1.5rem;
  }
  
  .secondary_pressed_e939 {
    font-size: 1rem;
  }
  
  .overlay_hovered_75ae {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .glass-e917 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.sort-pressed-9b17 {
  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;
}

.feature-full-6c59 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-1a2b {
  list-style: none;
  counter-reset: toc-counter;
}

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

.box-1a2b 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);
}

.box-1a2b 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;
}

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

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

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

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

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

.texture-copper-1be7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.liquid-d7e1 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) {
  .grid-middle-2fb0 {
    grid-template-columns: 1fr;
  }
  
  .texture-copper-1be7 {
    font-size: 1.75rem;
  }
  
  .cool-c773 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .texture-copper-1be7 {
    font-size: 1.5rem;
  }
  
  .cool-c773 h3 {
    font-size: 1.375rem;
  }
  
  .cool-c773 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.article-cold-57b0 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.center-d733 {
  flex-shrink: 0;
}

.article-over-226c strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.solid-757c,
.south-7259,
.focused-7b33 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.solid-757c thead,
.south-7259 thead {
  background: var(--color-primary);
  color: white;
}

.solid-757c th,
.solid-757c td,
.south-7259 th,
.south-7259 td,
.focused-7b33 th,
.focused-7b33 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .solid-757c th,
  .solid-757c td,
  .south-7259 th,
  .south-7259 td,
  .focused-7b33 th,
  .focused-7b33 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .solid-757c,
  .south-7259,
  .focused-7b33 {
    min-width: 600px;
  }
}

.solid-757c th,
.south-7259 th,
.focused-7b33 th {
  font-weight: 600;
}

.solid-757c tbody tr:hover,
.south-7259 tbody tr:hover,
.focused-7b33 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.banner_6ac9 h4 {
  color: white;
}

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

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

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

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

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

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

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

.out-7d18:hover {
  text-decoration: underline;
}

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

.sidebar-large-0359 {
  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);
}

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

.alert-top-dc66 {
  font-weight: 600;
  color: white;
}

.bronze-d2b8 {
  list-style: none;
  padding: 0;
}

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

.picture_b1f0 {
  color: #4caf50;
}

.article-full-4082 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.video-down-43d6 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-28f3 .sort-pressed-9b17 {
  width: 100%;
  background: white;
}

.badge-d763 .sort-pressed-9b17 {
  color: #667eea;
}

.short_41e2 .sort-pressed-9b17 {
  color: #f5576c;
}

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

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

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

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

.carousel-narrow-f3ec h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .carousel-narrow-f3ec {
    padding: var(--space-md);
  }
  
  .orange_5ec5 {
    padding: var(--space-md);
  }
  
  .photo_purple_0815 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.input-top-7ce2 ol,
.input-top-7ce2 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.input-top-7ce2 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.primary_pink_d1ff,
.widget-74a3,
.iron_559b,
.tooltip-warm-9c56 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.outline-blue-4206:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.image-dirty-09be {
  border-color: var(--color-success);
}

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

.active-8c18 {
  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);
}

.image-dirty-09be .active-8c18 {
  background: #e8f5e9;
  color: var(--color-success);
}

.selected_1030 .active-8c18 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.block-last-2f9b {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

@media (max-width: 768px) {
  .active-red-46c1 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.current-f983 {
  text-align: center;
}

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

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

.footer_paper_893a .alert-top-dc66 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lower_c8c0 {
  text-align: right;
}

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

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

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

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

.card-168e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

.blue-456b {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.icon-fast-bbb1 strong {
  color: var(--color-primary);
}

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

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

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

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

.accordion-right-5a11 {
  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);
}

.accordion-right-5a11:hover {
  background: var(--color-bg-alt);
}

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

.accordion-right-5a11[aria-expanded="true"] .huge_57cc {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-stone-d9c8,
.thumbnail_fb63 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dropdown-stone-d9c8 h4,
.thumbnail_fb63 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dropdown-stone-d9c8 ul,
.thumbnail_fb63 ul {
  list-style: none;
  padding: 0;
}

.dropdown-stone-d9c8 li,
.thumbnail_fb63 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.hard-2ee0 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.tertiary-fc0c {
  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-a9c8 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.overlay-selected-9826 {
  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);
}

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

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

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

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

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

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

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

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

.thumbnail-9c89 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thumbnail-9c89 li {
  margin-bottom: var(--space-xs);
}

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

.thumbnail-9c89 a:hover {
  color: white;
}

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

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

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

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

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

.tertiary-9715 a:hover {
  color: white;
}

.outline-new-8e61 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .list_down_0309,
  .pagination-narrow-8c45 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.solid-a961 .tag_cool_a23c {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.short_131c a:hover {
  color: white;
}

.summary-fbb7 {
  list-style: none;
  padding: 0;
}

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

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

.summary-fbb7 a:hover {
  color: white;
}

.outline-new-8e61 {
  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);
}

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

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

.hidden-copper-f653 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.gas-f64e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .outline-new-8e61 {
    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;
  }
  
  .focus-a257 {
    font-size: 2rem;
  }
  
  .texture-copper-1be7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dim-f23a,
  .grid-middle-2fb0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .highlight-47c3,
  .wrapper-tall-d5ba,
  .column-out-d962,
  .active-red-46c1,
  .cold-104d,
  .wrapper_advanced_e1a3,
  .modal_new_0c8e,
  .list_down_0309,
  .pagination-narrow-8c45 {
    grid-template-columns: 1fr;
  }
  
  .notification_basic_91ef {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .active_3af9 {
    padding: var(--space-lg) 0;
  }
  
  .box-1a2b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .box-1a2b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .sort-pressed-9b17 {
    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;
  }
  
  .notification_basic_91ef {
    grid-template-columns: 1fr;
  }
  
  .feature-f57d,
  .shade-easy-a032,
  .medium-385e {
    flex-direction: column;
    width: 100%;
  }
  
  .slow-edbc,
  .icon_down_e78a,
  .feature-f57d .sort-pressed-9b17,
  .shade-easy-a032 .sort-pressed-9b17 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .focus-a257 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .texture-copper-1be7 {
    font-size: 1.375rem;
  }
  
  .gradient-5dc7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container_2dc6,
  .purple-c59c,
  .preview-small-3ecb,
  .focused_a3c4,
  .column-4a51 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .element_019f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .notice-solid-25ef {
    gap: var(--space-xs);
  }
  
  .active-bcec {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .sidebar-large-0359 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer_paper_893a {
    width: 150px;
    height: 150px;
  }
  
  .nav_dim_e797 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .shadow-8510,
  .carousel-024a,
  .feature-f57d,
  .fixed-1900,
  .form_4671,
  .row_dirty_aae5,
  .picture_rough_25cf {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .active_3af9 {
    page-break-inside: avoid;
  }
}

/* css-noise: f9e6 */
.promo-block-m7 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
