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

.table_narrow_e0cd:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.wide-7e28):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. */
.wide-7e28,
header,
.tag_in_7f6c,
.nav_active_0a21,
.fast-fa02,
.accent_thick_a518,
.hero-dark-9c5d,
.gas_6e1f,
.heading_mini_e5f4 {
  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
   ============================================ */
.wide-7e28 {
  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);
}

.warm-1ca6 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.wide-7e28.text-bottom-b888 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.filter-81d3 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.caption_short_1733 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.photo_current_481a {
  position: relative;
}

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

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

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

.blue-0aff {
  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;
}

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

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

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

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

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

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

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

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

.caption-down-d2e1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .caption_short_1733 {
    display: none;
  }
  
  .card_67f5 {
    display: flex;
  }
  
  .shadow_simple_1a04 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .caption-down-d2e1,
  .right_8e63 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .photo_current_481a {
    position: relative;
  }
  
  .blue-0aff {
    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;
  }
  
  .accent_cool_78aa[aria-expanded="true"] + .blue-0aff {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tabs_static_d6a6 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .notification-1701 {
    gap: 8px;
  }
  
  .caption-down-d2e1 {
    display: none;
  }
  
  .right_8e63 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .filter-81d3 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.table_10c3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.blue-3ce1 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .right-77df {
    grid-template-columns: 1fr;
  }
  
  .dirty-43bd {
    font-size: 1.75rem;
  }
  
  .widget-b3ae {
    order: -1;
    max-width: 100%;
  }
  
  .mask_next_f3cf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dirty-43bd {
    font-size: 1.5rem;
  }
  
  .narrow_38a9 {
    font-size: 1rem;
  }
  
  .new_7889 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask_next_f3cf {
    max-width: 250px;
  }
}

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

.pattern-fluid-6726 {
  background: var(--color-primary);
  color: white;
}

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

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

.hidden-inner-c3c4:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.alert-5e5b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.section-soft-29b3 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.hero-dark-9c5d {
  padding: var(--space-xxl) 0;
}

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

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

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

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

.active-2354 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.article-mini-4404 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.article-mini-4404 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);
}

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

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

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

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

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

.article-mini-4404 strong {
  font-weight: 600;
  color: var(--color-text);
}

.article-mini-4404 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.article-mini-4404 a:hover {
  color: var(--color-primary-dark);
}

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

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

.tiny_2ec1 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) {
  .block-fast-26ff {
    grid-template-columns: 1fr;
  }
  
  .search-b86c {
    font-size: 1.75rem;
  }
  
  .article-mini-4404 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .search-b86c {
    font-size: 1.5rem;
  }
  
  .article-mini-4404 h3 {
    font-size: 1.375rem;
  }
  
  .article-mini-4404 h4 {
    font-size: 1.125rem;
  }
}

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

.list-short-8962 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.section-d74a {
  flex-shrink: 0;
}

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

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

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

.primary-02f1,
.pattern-03b2,
.thick-9828 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.primary-02f1 thead,
.pattern-03b2 thead {
  background: var(--color-primary);
  color: white;
}

.primary-02f1 th,
.primary-02f1 td,
.pattern-03b2 th,
.pattern-03b2 td,
.thick-9828 th,
.thick-9828 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .primary-02f1 th,
  .primary-02f1 td,
  .pattern-03b2 th,
  .pattern-03b2 td,
  .thick-9828 th,
  .thick-9828 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .primary-02f1,
  .pattern-03b2,
  .thick-9828 {
    min-width: 600px;
  }
}

.primary-02f1 th,
.pattern-03b2 th,
.thick-9828 th {
  font-weight: 600;
}

.primary-02f1 tbody tr:hover,
.pattern-03b2 tbody tr:hover,
.thick-9828 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.photo-2ac4 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-1fee {
  color: #4caf50;
}

.text_32d3 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination-orange-5ca3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description_82b1 .simple-e4ca {
  width: 100%;
  background: white;
}

.shadow-555b .simple-e4ca {
  color: #667eea;
}

.content_small_7bd1 .simple-e4ca {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .black-8028 {
    padding: var(--space-md);
  }
  
  .button_stale_0d90 {
    padding: var(--space-md);
  }
  
  .new-e237 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.in_3ede,
.badge_9da6,
.advanced-f79e,
.tooltip_dcd8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.description-west-596a {
  border-color: var(--color-success);
}

.paper-0ad1 {
  border-color: var(--color-warning);
}

.focused-2c0a {
  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);
}

.description-west-596a .focused-2c0a {
  background: #e8f5e9;
  color: var(--color-success);
}

.paper-0ad1 .focused-2c0a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-active-3a98 {
  text-align: center;
}

.south-129c {
  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);
}

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

.south-129c .current_3b82 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-white-6fb7 {
  text-align: right;
}

.message-white-6fb7 .notification-2f33 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.heading-0502 {
  background: #e3f2fd;
  color: #1565c0;
}

.tertiary-first-3d50 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-b9b5[aria-expanded="true"] .paper_dfe9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-hard-571f,
.outline-static-d609 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.icon-hard-571f h4,
.outline-static-d609 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.icon-hard-571f ul,
.outline-static-d609 ul {
  list-style: none;
  padding: 0;
}

.icon-hard-571f li,
.outline-static-d609 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.dark-4aee ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.pressed-c36a {
  font-style: italic;
}

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

.nav-center-0bc0 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall-f575 .content_bronze_fb91 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.tag-6519 a:hover {
  color: white;
}

.widget-7199 {
  list-style: none;
  padding: 0;
}

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

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

.widget-7199 a:hover {
  color: white;
}

.widget-5e99 {
  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);
}

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

.hero-paper-1940 a {
  color: #4caf50;
  text-decoration: none;
}

.basic-59c7 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.mini-70a2:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .widget-5e99 {
    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;
  }
  
  .dirty-43bd {
    font-size: 2rem;
  }
  
  .search-b86c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .right-77df,
  .block-fast-26ff {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .video-huge-5585,
  .hover_51af,
  .mini_d363,
  .banner-79c1,
  .status-hovered-7a41,
  .component_pro_27a1,
  .outline_30b9,
  .main_pressed_d6b7 {
    grid-template-columns: 1fr;
  }
  
  .secondary-98c7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero-dark-9c5d {
    padding: var(--space-lg) 0;
  }
  
  .paragraph_10ec li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .paragraph_10ec li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .simple-e4ca {
    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;
  }
  
  .secondary-98c7 {
    grid-template-columns: 1fr;
  }
  
  .yellow_795c,
  .carousel_2b67,
  .backdrop_warm_5115 {
    flex-direction: column;
    width: 100%;
  }
  
  .alert-5e5b,
  .section-soft-29b3,
  .yellow_795c .simple-e4ca,
  .carousel_2b67 .simple-e4ca {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dirty-43bd {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .search-b86c {
    font-size: 1.375rem;
  }
  
  .left_1259 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .basic_42f8,
  .chip_pro_835e,
  .card_dirty_951a,
  .hero_cool_290e,
  .section_a2b4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .row-middle-fb84 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pink-0d3c {
    gap: var(--space-xs);
  }
  
  .table_10c3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner_5487 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .south-129c {
    width: 150px;
    height: 150px;
  }
  
  .container_a3e7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .wide-7e28,
  .tag_in_7f6c,
  .yellow_795c,
  .nav-center-0bc0,
  .gas_6e1f,
  .heading_mini_e5f4,
  .card_67f5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-dark-9c5d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: d7d5 */
.widget-item-n8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.1;
}
