/* ============================================
   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)
   ============================================ */
.label-in-853f {
  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;
}

.label-in-853f:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.aside_4ced,
header,
.card_69b2,
.backdrop-ebe9,
.picture_1642,
.gallery_d548,
.aside_simple_ad36,
.inner_3e97,
.backdrop_483c {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.aside_4ced {
  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);
}

.search-blue-ec1b {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.aside_4ced.accent-smooth-8a5b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.pink-5d40 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.action-f061 {
  flex: 1;
}

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

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

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

.label-c560.fn-active-2cd4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.component-liquid-c46c {
  position: relative;
}

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

.sidebar-bbe0 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.content_5315 svg {
  flex-shrink: 0;
}

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

.smooth-4eb1: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);
}

.smooth-4eb1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.south-4133[aria-expanded="true"] .short-17fc:nth-child(2) {
  opacity: 0;
}

.south-4133[aria-expanded="true"] .short-17fc:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .action-f061::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .action-f061.notification-copper-dd78 {
    display: block;
    right: 0;
  }
  
  .chip-cold-3c88 {
    flex-direction: column;
    gap: 0;
  }
  
  .label-c560 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .action-f061::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;
  }
  
  .action-f061.notification-copper-dd78::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .action-f061 {
    display: none;
  }
  
  .south-4133 {
    display: flex;
  }
  
  .carousel_easy_21e9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .content_5315,
  .smooth-4eb1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component-liquid-c46c {
    position: relative;
  }
  
  .info_medium_e7c0 {
    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;
  }
  
  .sidebar-bbe0[aria-expanded="true"] + .info_medium_e7c0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast_e5ff {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .feature_46f9 {
    gap: 8px;
  }
  
  .content_5315 {
    display: none;
  }
  
  .smooth-4eb1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .pink-5d40 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .smooth-4eb1 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .smooth-4eb1 svg {
    width: 14px;
    height: 14px;
  }
  
  .dropdown-8c30 {
    gap: var(--space-sm);
  }
}

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

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

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

.thick_cee5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-rough-dfaf {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-rough-dfaf strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.chip-2ceb {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.box-large-760f {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .slow-b3cd {
    grid-template-columns: 1fr;
  }
  
  .highlight-6516 {
    font-size: 1.75rem;
  }
  
  .hero_dim_160b {
    order: -1;
    max-width: 100%;
  }
  
  .chip-2ceb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .highlight-6516 {
    font-size: 1.5rem;
  }
  
  .outline-liquid-125b {
    font-size: 1rem;
  }
  
  .notification_gas_7fa2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .chip-2ceb {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.south-8200 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.feature-5f67 {
  background: var(--color-primary);
  color: white;
}

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

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

.media-center-be47:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

.layout-purple-414b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-1cce {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message_7d91 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) {
  .dynamic_942e {
    grid-template-columns: 1fr;
  }
  
  .pro-f345 {
    font-size: 1.75rem;
  }
  
  .gradient_out_0a45 {
    max-width: 100%;
  }
}

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

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

.module-green-5a76 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.black-a20a {
  flex-shrink: 0;
}

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

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

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

.white_65c7,
.text_outer_f9f2,
.focused-ed5d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.white_65c7 thead,
.text_outer_f9f2 thead {
  background: var(--color-primary);
  color: white;
}

.white_65c7 th,
.white_65c7 td,
.text_outer_f9f2 th,
.text_outer_f9f2 td,
.focused-ed5d th,
.focused-ed5d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .white_65c7 th,
  .white_65c7 td,
  .text_outer_f9f2 th,
  .text_outer_f9f2 td,
  .focused-ed5d th,
  .focused-ed5d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .white_65c7,
  .text_outer_f9f2,
  .focused-ed5d {
    min-width: 600px;
  }
}

.white_65c7 th,
.text_outer_f9f2 th,
.focused-ed5d th {
  font-weight: 600;
}

.white_65c7 tbody tr:hover,
.text_outer_f9f2 tbody tr:hover,
.focused-ed5d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.silver_3667 h4 {
  color: white;
}

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

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

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

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

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

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

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

.footer-9a6e:hover {
  text-decoration: underline;
}

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

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

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

.form-8f4a {
  font-weight: 600;
  color: white;
}

.pagination-light-e4e9 {
  list-style: none;
  padding: 0;
}

.pagination-light-e4e9 li {
  padding: var(--space-xs) 0;
}

.list_270a {
  color: #4caf50;
}

.south-f7c9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-fresh-2ff1 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.shadow-yellow-bcfb {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.feature-7794 .south-8200 {
  width: 100%;
  background: white;
}

.row-gas-bb22 .south-8200 {
  color: #667eea;
}

.cool-211f .south-8200 {
  color: #f5576c;
}

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

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

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

.text-fixed-22ac {
  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);
}

.wrapper-878e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.element-356f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .wrapper-878e {
    padding: var(--space-md);
  }
  
  .element-356f {
    padding: var(--space-md);
  }
  
  .box-current-c0ae {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.silver_cdef,
.tertiary_18a3,
.pattern-up-2147,
.detail_inner_1b2d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.lower-38d8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.block-fixed-cf1c {
  border-color: var(--color-success);
}

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

.element-rough-b7cf {
  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);
}

.block-fixed-cf1c .element-rough-b7cf {
  background: #e8f5e9;
  color: var(--color-success);
}

.sidebar_lite_3408 .element-rough-b7cf {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .modal-hovered-46a2 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.smooth-73e2 {
  text-align: center;
}

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

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

.aside_3d3d .form-8f4a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.frame-soft-30c0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.content-top-0464 {
  color: var(--color-text-light);
}

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

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

.highlight-5dd7 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.modal-pressed-5d0c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

.highlight-paper-18bc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.dark_e919 {
  text-align: right;
}

.dark_e919 .lower-52e7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.primary-909b {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-dark-b513 {
  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-hard-0e53 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

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

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

.steel_fcdc,
.status-6ed9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.steel_fcdc h4,
.status-6ed9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.steel_fcdc ul,
.status-6ed9 ul {
  list-style: none;
  padding: 0;
}

.steel_fcdc li,
.status-6ed9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.mask-4d7f ul {
  list-style: none;
  padding: 0;
}

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

.pro-870a {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.menu_rough_2042 {
  font-style: italic;
}

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

.outline-west-eb94 {
  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;
}

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

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

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

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

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

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

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

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

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

.menu-fresh-8df9 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

/* Footer variant: footer-content (subpages) */
.dark-9599 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.solid-ec4f {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.solid-ec4f a:hover {
  color: white;
}

.icon-north-70b0 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.icon-north-70b0 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.icon-north-70b0 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.item-south-d5fc {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.item-south-d5fc a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .focus-huge-f57d,
  .dark-9599 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.shadow_stone_c63e .filter-e843 {
  color: #4caf50;
  font-size: 0.875rem;
}

.tag-red-d83c {
  list-style: none;
  padding: 0;
}

.tag-red-d83c li {
  margin-bottom: var(--space-xs);
}

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

.tag-red-d83c a:hover {
  color: white;
}

.lite-0fe0 {
  list-style: none;
  padding: 0;
}

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

.lite-0fe0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.lite-0fe0 a:hover {
  color: white;
}

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

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

.advanced-139f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.mask_5842 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

.paragraph-1a73:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu_39be {
    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;
  }
  
  .highlight-6516 {
    font-size: 2rem;
  }
  
  .pro-f345 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .slow-b3cd,
  .dynamic_942e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .detail-right-4944,
  .simple-aa52,
  .old-1dd9,
  .modal-hovered-46a2,
  .hovered-e7b6,
  .focused-088d,
  .disabled_2881,
  .focus-huge-f57d,
  .dark-9599 {
    grid-template-columns: 1fr;
  }
  
  .banner_gas_039e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .aside_simple_ad36 {
    padding: var(--space-lg) 0;
  }
  
  .column_hovered_204a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .column_hovered_204a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .south-8200 {
    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;
  }
  
  .banner_gas_039e {
    grid-template-columns: 1fr;
  }
  
  .widget_8727,
  .texture_medium_9d62,
  .active_64b0 {
    flex-direction: column;
    width: 100%;
  }
  
  .filter_5df1,
  .slider_hard_ceb1,
  .widget_8727 .south-8200,
  .texture_medium_9d62 .south-8200 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .highlight-6516 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pro-f345 {
    font-size: 1.375rem;
  }
  
  .background-9a63 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .layout-purple-414b,
  .aside_glass_4c08,
  .content-b96e,
  .aside-new-fbaf,
  .surface-0578 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .card_f38d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .preview-9f54 {
    gap: var(--space-xs);
  }
  
  .thick_cee5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .heading-1337 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .aside_3d3d {
    width: 150px;
    height: 150px;
  }
  
  .box-active-4dc3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .aside_4ced,
  .card_69b2,
  .widget_8727,
  .outline-west-eb94,
  .inner_3e97,
  .backdrop_483c,
  .south-4133 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .aside_simple_ad36 {
    page-break-inside: avoid;
  }
}

/* css-noise: 7c7f */
.ghost-box-y0 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.1;
}
