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

.pro_6d34:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.banner-silver-8ac8):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. */
.banner-silver-8ac8,
header,
.medium-1d0b,
.texture_f583,
.orange-2c3d,
.stale_531b,
.pattern_stale_fc58,
.video-gas-88a8,
.secondary-4185 {
  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
   ============================================ */
.banner-silver-8ac8 {
  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);
}

.under-fef9 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.banner-silver-8ac8.background_acb3 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.info-f640 {
  flex: 1;
}

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

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

.lite-87c1:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.lite-87c1.pagination-72b2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.main-a32b {
  position: relative;
}

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

.surface-steel-aa7d svg {
  transition: transform 0.2s ease;
}

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

.small-573f {
  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;
}

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

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

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

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

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

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

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

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

.solid-646b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .info-f640::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .info-f640.short-bb6e {
    display: block;
    right: 0;
  }
  
  .element-08dd {
    flex-direction: column;
    gap: 0;
  }
  
  .lite-87c1 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .info-f640::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;
  }
  
  .info-f640.short-bb6e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .info-f640 {
    display: none;
  }
  
  .last-0e30 {
    display: flex;
  }
  
  .notification_north_6885 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .solid-646b,
  .fluid_6faa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .main-a32b {
    position: relative;
  }
  
  .small-573f {
    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;
  }
  
  .surface-steel-aa7d[aria-expanded="true"] + .small-573f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .border_iron_9cd9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .column_huge_b782 {
    gap: 8px;
  }
  
  .solid-646b {
    display: none;
  }
  
  .fluid_6faa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .up_78e1 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.breadcrumb-static-0e6a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-static-0e6a svg {
  flex-shrink: 0;
}

.breadcrumb-static-0e6a a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb-static-0e6a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.modal-motion-39ad a {
  color: var(--color-primary);
  text-decoration: none;
}

.modal-motion-39ad a:hover {
  text-decoration: underline;
}

.next-51fc {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.focus-2ad0 {
  display: flex;
  gap: var(--space-sm);
}

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

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

.iron-2e94 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.content-6857 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.clean-1ee1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-ec93 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.texture-mini-93e9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .bright_57a9 {
    grid-template-columns: 1fr;
  }
  
  .selected-e5df {
    font-size: 1.75rem;
  }
  
  .clean-1ee1 {
    order: -1;
    max-width: 100%;
  }
  
  .search-ec93 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .selected-e5df {
    font-size: 1.5rem;
  }
  
  .iron_b6e7 {
    font-size: 1rem;
  }
  
  .modal-motion-39ad {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .search-ec93 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.soft-06fe {
  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;
}

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

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

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

.footer-red-4655:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.status-97a2 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.dark-32f7 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.dark-32f7 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);
}

.dark-32f7 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;
}

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

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

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

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

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

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

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

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

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

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

.video-pink-a16e img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.video-pink-a16e 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);
}

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

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

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

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

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

.video-pink-a16e strong {
  font-weight: 600;
  color: var(--color-text);
}

.video-pink-a16e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.video-pink-a16e a:hover {
  color: var(--color-primary-dark);
}

.disabled-48a2 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.disabled-48a2 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) {
  .module_ffde {
    grid-template-columns: 1fr;
  }
  
  .grid_west_3f6f {
    font-size: 1.75rem;
  }
  
  .video-pink-a16e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .grid_west_3f6f {
    font-size: 1.5rem;
  }
  
  .video-pink-a16e h3 {
    font-size: 1.375rem;
  }
  
  .video-pink-a16e h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.under-34a8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.heading-dark-46f8 {
  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;
}

.brown-ab4d {
  flex-shrink: 0;
}

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

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

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

.banner-glass-6d1a,
.container-next-b8c5,
.pressed-5ebf {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.banner-glass-6d1a thead,
.container-next-b8c5 thead {
  background: var(--color-primary);
  color: white;
}

.banner-glass-6d1a th,
.banner-glass-6d1a td,
.container-next-b8c5 th,
.container-next-b8c5 td,
.pressed-5ebf th,
.pressed-5ebf td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .banner-glass-6d1a th,
  .banner-glass-6d1a td,
  .container-next-b8c5 th,
  .container-next-b8c5 td,
  .pressed-5ebf th,
  .pressed-5ebf td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .banner-glass-6d1a,
  .container-next-b8c5,
  .pressed-5ebf {
    min-width: 600px;
  }
}

.banner-glass-6d1a th,
.container-next-b8c5 th,
.pressed-5ebf th {
  font-weight: 600;
}

.banner-glass-6d1a tbody tr:hover,
.container-next-b8c5 tbody tr:hover,
.pressed-5ebf tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.progress_fast_4e23 h4 {
  color: white;
}

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

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

.caption-fd4b:last-child {
  border-bottom: none;
}

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

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

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

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

.nav-hovered-2c01:hover {
  text-decoration: underline;
}

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

.stale-1f9f {
  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);
}

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

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

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

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

.message-3e05 {
  color: #4caf50;
}

.frame_4520 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.west-6ba4 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover-cb03 .soft-06fe {
  width: 100%;
  background: white;
}

.west-0071 .soft-06fe {
  color: #667eea;
}

.feature-60f2 .soft-06fe {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.black_c7d9,
.summary_easy_a10d,
.brown-484a,
.outer-f7e1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.photo-solid-7b3c {
  border-color: var(--color-success);
}

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

.gradient-3f77 {
  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);
}

.photo-solid-7b3c .gradient-3f77 {
  background: #e8f5e9;
  color: var(--color-success);
}

.up_6a88 .gradient-3f77 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled_2d7b {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-5c7f {
  border: 2px solid #4caf50;
}

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

.breadcrumb-5b57 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.rough_34e8 {
  text-align: right;
}

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

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

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

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

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

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

.blue-0822 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.button-2973 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.item-6fc4 {
  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);
}

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.gradient-in-35d7 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lite_8fa1 ul,
.container_9d8a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.alert-bottom-9f98 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

.block-plasma-df6d {
  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);
}

.media-6e15 {
  font-style: italic;
}

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

.table-dark-bb6e {
  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;
}

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

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

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

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

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

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

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

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

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

.article-next-14b6 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.iron-b53f .focus-2ad0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.surface-3468 {
  list-style: none;
  padding: 0;
}

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

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

.surface-3468 a:hover {
  color: white;
}

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

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

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

.avatar_stale_74f9 a:hover {
  color: white;
}

.accordion-3c7a {
  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);
}

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

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

.media-clean-dfd8 {
  font-size: 0.75rem;
  color: #666666;
}

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

.notification-inner-483b {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.notification-inner-483b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accordion-3c7a {
    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;
  }
  
  .selected-e5df {
    font-size: 2rem;
  }
  
  .grid_west_3f6f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .bright_57a9,
  .module_ffde {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .title-west-a11c,
  .caption_6ddb,
  .dark_2889,
  .breadcrumb-ea55,
  .full-003d,
  .accent-0a3a,
  .cool-171f,
  .pressed-d191 {
    grid-template-columns: 1fr;
  }
  
  .gas_9bb8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pattern_stale_fc58 {
    padding: var(--space-lg) 0;
  }
  
  .dark-32f7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dark-32f7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .soft-06fe {
    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;
  }
  
  .gas_9bb8 {
    grid-template-columns: 1fr;
  }
  
  .content-6857,
  .frame_active_fc38,
  .shade_cold_b166 {
    flex-direction: column;
    width: 100%;
  }
  
  .alert_first_1464,
  .status-97a2,
  .content-6857 .soft-06fe,
  .frame_active_fc38 .soft-06fe {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .selected-e5df {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .grid_west_3f6f {
    font-size: 1.375rem;
  }
  
  .list_down_1007 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .liquid-1bae,
  .link-3ff0,
  .info_left_0d64,
  .plasma_a2eb,
  .red_740b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider_bronze_d11b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wide-6b92 {
    gap: var(--space-xs);
  }
  
  .breadcrumb-static-0e6a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .stale-1f9f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .input_simple_a611 {
    width: 150px;
    height: 150px;
  }
  
  .shadow_9e99 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .banner-silver-8ac8,
  .medium-1d0b,
  .content-6857,
  .table-dark-bb6e,
  .video-gas-88a8,
  .secondary-4185,
  .last-0e30 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pattern_stale_fc58 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.highlight-lower-c0cd {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 3883 */
.promo-block-v2 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
