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

.shade-4406:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.last-6e4e,
header,
.tag-liquid-e86a,
.stale-71f7,
.status_42dd,
.image_narrow_01ec,
.modal_14c2,
.under_d8ea,
.first_a325 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

.over-a8a6 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.last-6e4e.border-prev-aa7d {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.border-4df8 {
  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;
}

.feature_complex_f04a {
  flex: 1;
}

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

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

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

.carousel_2a4f.down-eb04 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.filter-8c34 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-top-5154 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .feature_complex_f04a {
    display: none;
  }
  
  .dropdown_9a78 {
    display: flex;
  }
  
  .border-4df8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .avatar-top-5154,
  .basic_de21 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .filter-8c34 {
    position: relative;
  }
  
  .notification_669a {
    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;
  }
  
  .status_new_8c23[aria-expanded="true"] + .notification_669a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .layout_3f80 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tall_938a {
    gap: 8px;
  }
  
  .avatar-top-5154 {
    display: none;
  }
  
  .basic_de21 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .active_fb07 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.sort_9cea svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-21bf {
  display: flex;
  gap: var(--space-sm);
}

.hero-dark-6915 {
  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;
}

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

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

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

.hover-94d4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .stone_f58c {
    grid-template-columns: 1fr;
  }
  
  .card_6f54 {
    font-size: 1.75rem;
  }
  
  .black_17f0 {
    order: -1;
    max-width: 100%;
  }
  
  .module_smooth_c3fe {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .card_6f54 {
    font-size: 1.5rem;
  }
  
  .photo-9c5b {
    font-size: 1rem;
  }
  
  .west_5d93 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .module_smooth_c3fe {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.south-3fea {
  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;
}

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

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

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

.static-48ec:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-easy-3c87 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.sidebar-easy-3c87 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) {
  .glass-22b8 {
    grid-template-columns: 1fr;
  }
  
  .alert_stale_f67c {
    font-size: 1.75rem;
  }
  
  .motion-afb2 {
    max-width: 100%;
  }
}

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

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

.photo-5cd2 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.table-light-7c88 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.grid-down-b062 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.table-huge-1df9 {
  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;
}

.link_smooth_43fe {
  flex-shrink: 0;
}

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

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

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

.down-90e4,
.menu_f2e7,
.video-inner-7b74 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.down-90e4 thead,
.menu_f2e7 thead {
  background: var(--color-primary);
  color: white;
}

.down-90e4 th,
.down-90e4 td,
.menu_f2e7 th,
.menu_f2e7 td,
.video-inner-7b74 th,
.video-inner-7b74 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .down-90e4 th,
  .down-90e4 td,
  .menu_f2e7 th,
  .menu_f2e7 td,
  .video-inner-7b74 th,
  .video-inner-7b74 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .down-90e4,
  .menu_f2e7,
  .video-inner-7b74 {
    min-width: 600px;
  }
}

.down-90e4 th,
.menu_f2e7 th,
.video-inner-7b74 th {
  font-weight: 600;
}

.down-90e4 tbody tr:hover,
.menu_f2e7 tbody tr:hover,
.video-inner-7b74 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.motion-2e68 h4 {
  color: white;
}

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

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

.texture-slow-34e2:last-child {
  border-bottom: none;
}

.texture-slow-34e2 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.texture-slow-34e2 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.popup-purple-7ca9:hover {
  text-decoration: underline;
}

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

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

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

.carousel-3495 {
  font-weight: 600;
  color: white;
}

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

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

.logo-lower-d561 {
  color: #4caf50;
}

.border_6cf4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.hover-large-cb23 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-short-18a4 .south-3fea {
  width: 100%;
  background: white;
}

.medium-df9f .south-3fea {
  color: #667eea;
}

.card-e9c8 .south-3fea {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .tabs_4b42 {
    padding: var(--space-md);
  }
  
  .module_dynamic_5c99 {
    padding: var(--space-md);
  }
  
  .block_d25a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.medium_82a0,
.button_0d81,
.blue-4e37,
.mask_1ee0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.fast-73d3 {
  border-color: var(--color-success);
}

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

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

.fast-73d3 .solid_64aa {
  background: #e8f5e9;
  color: var(--color-success);
}

.outer-0779 .solid_64aa {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.east-5f67 {
  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);
}

.basic-4644 {
  text-align: center;
}

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

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

.detail_e21f .carousel-3495 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.section-6b1a p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.shadow-narrow-f2a2 {
  margin-bottom: var(--space-xl);
}

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

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

.modal-east-1e09 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.summary-bright-3b23 {
  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;
}

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

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

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

.dropdown_7432 {
  text-align: right;
}

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

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

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

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

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

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

.simple-b3ed {
  background: #e8f5e9;
  color: #2e7d32;
}

.breadcrumb-fast-1e46 {
  background: #e3f2fd;
  color: #1565c0;
}

.avatar-center-1f3f {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.background-0ad2 {
  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);
}

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

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

.background-0ad2[aria-expanded="true"] .tabs_95d0 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner_smooth_6885,
.title-west-d489 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.banner_smooth_6885 h4,
.title-west-d489 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.banner_smooth_6885 ul,
.title-west-d489 ul {
  list-style: none;
  padding: 0;
}

.banner_smooth_6885 li,
.title-west-d489 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.info_a518 {
  font-style: italic;
}

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

.tiny-105f {
  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;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .nav-warm-051b {
    grid-template-columns: 1fr;
  }
}

.tiny-43e8 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.accordion_ed2c .dropdown-21bf {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.blue_6b05 a:hover {
  color: white;
}

.active-0616 {
  list-style: none;
  padding: 0;
}

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

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

.active-0616 a:hover {
  color: white;
}

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

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

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

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

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

.tabs-west-84a3 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.tabs-west-84a3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .texture_cold_fbba {
    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;
  }
  
  .card_6f54 {
    font-size: 2rem;
  }
  
  .alert_stale_f67c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .stone_f58c,
  .glass-22b8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .gallery_west_e123,
  .cool-598b,
  .detail-9a61,
  .texture_silver_dada,
  .bottom-95f9,
  .simple_e777,
  .nav-warm-051b,
  .sort_febb {
    grid-template-columns: 1fr;
  }
  
  .sidebar-7367 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .modal_14c2 {
    padding: var(--space-lg) 0;
  }
  
  .detail_ce21 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .detail_ce21 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .south-3fea {
    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;
  }
  
  .sidebar-7367 {
    grid-template-columns: 1fr;
  }
  
  .hover-94d4,
  .preview-0a98,
  .liquid_4969 {
    flex-direction: column;
    width: 100%;
  }
  
  .fresh_ae1c,
  .overlay_hard_8f8e,
  .hover-94d4 .south-3fea,
  .preview-0a98 .south-3fea {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .card_6f54 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .alert_stale_f67c {
    font-size: 1.375rem;
  }
  
  .hard_c4d2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .cold-95c1,
  .bronze_2f2c,
  .lower_2f3b,
  .backdrop-5878,
  .purple_eb9c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .action_d309 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .caption-full-2eca {
    gap: var(--space-xs);
  }
  
  .sort_9cea {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .backdrop_6257 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .detail_e21f {
    width: 150px;
    height: 150px;
  }
  
  .highlight_steel_96a7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .last-6e4e,
  .tag-liquid-e86a,
  .hover-94d4,
  .tiny-105f,
  .under_d8ea,
  .first_a325,
  .dropdown_9a78 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .modal_14c2 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.header-6e4e {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: d2b9 */
.ghost-box-u6 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
