/* ============================================
   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)
   ============================================ */
.carousel-silver-58a9 {
  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;
}

.carousel-silver-58a9:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.list-stale-748d):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. */
.list-stale-748d,
header,
.tooltip-liquid-0444,
.sidebar-70da,
.paragraph-fast-077d,
.tertiary_c88e,
.modal_pressed_22fe,
.in_8fc4,
.input_d728 {
  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
   ============================================ */
.list-stale-748d {
  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);
}

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

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

/* Scrolled state */
.list-stale-748d.small-638b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.picture-top-9153 img {
  height: 36px;
  width: auto;
  display: block;
}

.warm-0b6f {
  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;
}

.layout-warm-c49f {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.current-4044 {
  position: relative;
}

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

.item-852a svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.first_3b6d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.top_78d9[aria-expanded="true"] .hidden-dirty-b49d:nth-child(2) {
  opacity: 0;
}

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

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

  .layout-warm-c49f::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .layout-warm-c49f.focus-f6bd {
    display: block;
    right: 0;
  }
  
  .orange-73e5 {
    flex-direction: column;
    gap: 0;
  }
  
  .modal_3713 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .layout-warm-c49f::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;
  }
  
  .layout-warm-c49f.focus-f6bd::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .layout-warm-c49f {
    display: none;
  }
  
  .top_78d9 {
    display: flex;
  }
  
  .warm-0b6f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .first_3b6d,
  .east-d993 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .current-4044 {
    position: relative;
  }
  
  .motion_28c3 {
    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;
  }
  
  .item-852a[aria-expanded="true"] + .motion_28c3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .focus_1b39 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .shadow_d7cb {
    gap: 8px;
  }
  
  .first_3b6d {
    display: none;
  }
  
  .east-d993 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .picture-top-9153 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.gallery-thick-17f0 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-thick-17f0 svg {
  flex-shrink: 0;
}

.gallery-thick-17f0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.gallery-thick-17f0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hidden-acf0 a:hover {
  text-decoration: underline;
}

.paper-657d {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.gallery-2a98 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.copper-1fb1 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .outer-aaf1 {
    grid-template-columns: 1fr;
  }
  
  .banner-advanced-c5e2 {
    font-size: 1.75rem;
  }
  
  .basic_b6fd {
    order: -1;
    max-width: 100%;
  }
  
  .copper-1fb1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .banner-advanced-c5e2 {
    font-size: 1.5rem;
  }
  
  .background_33d4 {
    font-size: 1rem;
  }
  
  .hidden-acf0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .copper-1fb1 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.popup-e170 {
  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;
}

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

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

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

.menu-58b4:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-895e {
  background: var(--color-bg-section);
}

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

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

.info-simple-d5f2 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-upper-a93c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.hidden-upper-a93c 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) {
  .middle-a35c {
    grid-template-columns: 1fr;
  }
  
  .info-simple-d5f2 {
    font-size: 1.75rem;
  }
  
  .feature_simple_916a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .info-simple-d5f2 {
    font-size: 1.5rem;
  }
  
  .feature_simple_916a h3 {
    font-size: 1.375rem;
  }
  
  .feature_simple_916a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.notification_center_cd8d {
  flex-shrink: 0;
}

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

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

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

.article-d29a,
.overlay-silver-d529,
.tag_gas_9980 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-d29a thead,
.overlay-silver-d529 thead {
  background: var(--color-primary);
  color: white;
}

.article-d29a th,
.article-d29a td,
.overlay-silver-d529 th,
.overlay-silver-d529 td,
.tag_gas_9980 th,
.tag_gas_9980 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .article-d29a th,
  .article-d29a td,
  .overlay-silver-d529 th,
  .overlay-silver-d529 td,
  .tag_gas_9980 th,
  .tag_gas_9980 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .article-d29a,
  .overlay-silver-d529,
  .tag_gas_9980 {
    min-width: 600px;
  }
}

.article-d29a th,
.overlay-silver-d529 th,
.tag_gas_9980 th {
  font-weight: 600;
}

.article-d29a tbody tr:hover,
.overlay-silver-d529 tbody tr:hover,
.tag_gas_9980 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.search-down-1394 h4 {
  color: white;
}

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

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

.short-9ce5:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.green-e326 {
  font-weight: 600;
  color: white;
}

.selected-1030 {
  list-style: none;
  padding: 0;
}

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

.footer-black-b6d9 {
  color: #4caf50;
}

.dynamic_07fb {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-stone-6850 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.paragraph-25dc .popup-e170 {
  width: 100%;
  background: white;
}

.highlight-easy-beb1 .popup-e170 {
  color: #667eea;
}

.description-prev-49d1 .popup-e170 {
  color: #f5576c;
}

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

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

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

.selected-18ad {
  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);
}

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

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

@media (max-width: 768px) {
  .basic-e1f1 {
    padding: var(--space-md);
  }
  
  .notification_dbcb {
    padding: var(--space-md);
  }
  
  .gradient-9074 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hard-c296,
.element-orange-02a8,
.focused_7c96,
.active_11d9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.message-paper-6d90 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.notification-lower-d5ac:hover {
  background: var(--color-primary-dark);
}

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

.tall-49d1 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.video-fluid-7f96 {
  border-color: var(--color-warning);
}

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

.notification-2121 .hover_full_12c8 {
  background: #e8f5e9;
  color: var(--color-success);
}

.video-fluid-7f96 .hover_full_12c8 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-inner-3f34 {
  margin-top: var(--space-xxl);
}

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

.outline-9dad {
  text-align: center;
}

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

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

.large-cd64 .green-e326 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.surface-complex-7d45 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.last-ded9 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.accordion-plasma-d286 {
  text-align: right;
}

.accordion-plasma-d286 .table-new-0390 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.input-iron-1580 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.heading-rough-0bc7 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden_22c2 ul,
.feature_red_52ca ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-down-3745 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.selected-1dd0 .gallery-2a98 {
  color: #4caf50;
  font-size: 0.875rem;
}

.paragraph-paper-4c64 {
  list-style: none;
  padding: 0;
}

.paragraph-paper-4c64 li {
  margin-bottom: var(--space-xs);
}

.paragraph-paper-4c64 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.paragraph-paper-4c64 a:hover {
  color: white;
}

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

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

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

.row_e278 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .frame_554d {
    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;
  }
  
  .banner-advanced-c5e2 {
    font-size: 2rem;
  }
  
  .info-simple-d5f2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .outer-aaf1,
  .middle-a35c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .medium_1435,
  .widget_812e,
  .fresh-25a2,
  .caption_8cd2,
  .progress-full-ad5e,
  .image_motion_bf69,
  .blue-8d2d,
  .detail_95d0 {
    grid-template-columns: 1fr;
  }
  
  .focused-5429 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .modal_pressed_22fe {
    padding: var(--space-lg) 0;
  }
  
  .gas_2889 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gas_2889 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .popup-e170 {
    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;
  }
  
  .focused-5429 {
    grid-template-columns: 1fr;
  }
  
  .full_d679,
  .photo_simple_1718,
  .dynamic-afe4 {
    flex-direction: column;
    width: 100%;
  }
  
  .badge_b5fa,
  .logo_out_7112,
  .full_d679 .popup-e170,
  .photo_simple_1718 .popup-e170 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .banner-advanced-c5e2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .info-simple-d5f2 {
    font-size: 1.375rem;
  }
  
  .column_81be {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .basic_77e9,
  .container_inner_665a,
  .widget_selected_d7c9,
  .tertiary_9046,
  .search-85d2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .steel-e0e5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .badge_outer_85a5 {
    gap: var(--space-xs);
  }
  
  .gallery-thick-17f0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gold_6d29 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .large-cd64 {
    width: 150px;
    height: 150px;
  }
  
  .right_97ea {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .list-stale-748d,
  .tooltip-liquid-0444,
  .full_d679,
  .brown_876c,
  .in_8fc4,
  .input_d728,
  .top_78d9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .modal_pressed_22fe {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 06ac */
.phantom-card-a2 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.2;
}
