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

.dark-4de6:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.alert_c1e9,
header,
.last-5a31,
.mask-cb8b,
.summary-active-c467,
.icon-new-8943,
.tooltip-0d6e,
.element_selected_cd30,
.banner_a1ea {
  max-width: none;
}

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

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

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

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

.button-hard-5fe5 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.alert_c1e9.description-liquid-339a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.banner-black-00a0 {
  flex: 1;
}

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

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

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

.cold_63e0.fn-active-0fe2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.preview-green-29bd {
  position: relative;
}

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

.slider-3c6c svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.fixed_b5e2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.caption-red-b165[aria-expanded="true"] .outline_active_2943:nth-child(2) {
  opacity: 0;
}

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

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

  .banner-black-00a0::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .banner-black-00a0.primary_4170 {
    display: block;
    right: 0;
  }
  
  .upper-974a {
    flex-direction: column;
    gap: 0;
  }
  
  .cold_63e0 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .banner-black-00a0::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;
  }
  
  .banner-black-00a0.primary_4170::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .banner-black-00a0 {
    display: none;
  }
  
  .caption-red-b165 {
    display: flex;
  }
  
  .texture-e1a8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fixed_b5e2,
  .active_c1c6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .preview-green-29bd {
    position: relative;
  }
  
  .widget_hard_1a40 {
    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;
  }
  
  .slider-3c6c[aria-expanded="true"] + .widget_hard_1a40 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .new_8df0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tertiary-e5b3 {
    gap: 8px;
  }
  
  .fixed_b5e2 {
    display: none;
  }
  
  .active_c1c6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .popup_e8da img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.alert-8b38 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.alert-8b38 svg {
  flex-shrink: 0;
}

.alert-8b38 a {
  color: var(--color-primary);
  text-decoration: none;
}

.alert-8b38 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.shadow-blue-15d3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.shadow-blue-15d3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-hot-3a54 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .soft-edcc {
    grid-template-columns: 1fr;
  }
  
  .shade-active-fc06 {
    font-size: 1.75rem;
  }
  
  .content-9b0e {
    order: -1;
    max-width: 100%;
  }
  
  .purple_bdfa {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shade-active-fc06 {
    font-size: 1.5rem;
  }
  
  .aside_action_21df {
    font-size: 1rem;
  }
  
  .shadow-blue-15d3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .purple_bdfa {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.medium-21c0 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fluid_e15e {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo_2b62 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) {
  .header-d536 {
    grid-template-columns: 1fr;
  }
  
  .pro-4c1c {
    font-size: 1.75rem;
  }
  
  .first_f4ef {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.active_f205 {
  flex-shrink: 0;
}

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

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

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

.icon-top-7b82,
.picture-6859,
.frame-fast-174e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.icon-top-7b82 thead,
.picture-6859 thead {
  background: var(--color-primary);
  color: white;
}

.icon-top-7b82 th,
.icon-top-7b82 td,
.picture-6859 th,
.picture-6859 td,
.frame-fast-174e th,
.frame-fast-174e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .icon-top-7b82 th,
  .icon-top-7b82 td,
  .picture-6859 th,
  .picture-6859 td,
  .frame-fast-174e th,
  .frame-fast-174e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .icon-top-7b82,
  .picture-6859,
  .frame-fast-174e {
    min-width: 600px;
  }
}

.icon-top-7b82 th,
.picture-6859 th,
.frame-fast-174e th {
  font-weight: 600;
}

.icon-top-7b82 tbody tr:hover,
.picture-6859 tbody tr:hover,
.frame-fast-174e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.preview_next_9ddd h4 {
  color: white;
}

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

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

.column-south-a0f5:last-child {
  border-bottom: none;
}

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

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

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

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

.image-73b3:hover {
  text-decoration: underline;
}

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

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

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

.table-89d0 {
  font-weight: 600;
  color: white;
}

.up-fe6b {
  list-style: none;
  padding: 0;
}

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

.component-wood-02a8 {
  color: #4caf50;
}

.sort-cold-93bc {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-focused-bb64 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.footer-f74b .liquid-b921 {
  width: 100%;
  background: white;
}

.sort-static-a278 .liquid-b921 {
  color: #667eea;
}

.notification_f7b1 .liquid-b921 {
  color: #f5576c;
}

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

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

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

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

.notice-09e1 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .notice-09e1 {
    padding: var(--space-md);
  }
  
  .hard_5916 {
    padding: var(--space-md);
  }
  
  .accent_45ae {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.fluid_7313,
.notice-brown-8de8,
.stone-d22a,
.paper_8b07 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev_25ad .wrapper_gold_0ab3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.medium_5460 .wrapper_gold_0ab3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.full-86b1 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.notice-over-28df {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.filter-small-0638 {
  margin-top: var(--space-xxl);
}

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

.label_ac5a {
  text-align: center;
}

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

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

.background_4ec2 .table-89d0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.dirty-4f86 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.layout-red-99f4 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.list-down-47ad {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.badge-brown-9bdf {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.label-5bab {
  text-align: right;
}

.label-5bab .column-bronze-7250 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.article-up-3f00 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.title-61f0 {
  background: #e3f2fd;
  color: #1565c0;
}

.border-46f6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-885a {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tooltip_dark_68cf[aria-expanded="true"] .search-885a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-9440,
.hero_gold_84e5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.logo-9440 h4,
.hero_gold_84e5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.logo-9440 ul,
.hero_gold_84e5 ul {
  list-style: none;
  padding: 0;
}

.logo-9440 li,
.hero_gold_84e5 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.info-666e ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.focus-1a85 {
  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);
}

.panel_0d5a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.focused-2db0 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.block-e440 .message_ca94 {
  color: #4caf50;
  font-size: 0.875rem;
}

.orange-c825 {
  list-style: none;
  padding: 0;
}

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

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

.orange-c825 a:hover {
  color: white;
}

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

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

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

.content_af6e a:hover {
  color: white;
}

.dynamic-1be0 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .dynamic-1be0 {
    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;
  }
  
  .shade-active-fc06 {
    font-size: 2rem;
  }
  
  .pro-4c1c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .soft-edcc,
  .header-d536 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .notice-simple-3619,
  .nav_current_1071,
  .left-64fe,
  .widget_inner_6b14,
  .border_simple_b214,
  .wrapper_cc75,
  .popup-dynamic-a891,
  .footer-short-6134 {
    grid-template-columns: 1fr;
  }
  
  .hero_94ef {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tooltip-0d6e {
    padding: var(--space-lg) 0;
  }
  
  .aside_fast_da59 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .aside_fast_da59 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .liquid-b921 {
    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;
  }
  
  .hero_94ef {
    grid-template-columns: 1fr;
  }
  
  .dynamic-b8b1,
  .info_plasma_43f6,
  .section-7674 {
    flex-direction: column;
    width: 100%;
  }
  
  .medium-21c0,
  .pink-c1ee,
  .dynamic-b8b1 .liquid-b921,
  .info_plasma_43f6 .liquid-b921 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shade-active-fc06 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pro-4c1c {
    font-size: 1.375rem;
  }
  
  .title-brown-e58a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .background_8a94,
  .in_10aa,
  .active_hot_513b,
  .primary-paper-0ac5,
  .old_b504 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gas_ad80 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .sort-77e1 {
    gap: var(--space-xs);
  }
  
  .alert-8b38 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .title-7673 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .background_4ec2 {
    width: 150px;
    height: 150px;
  }
  
  .tertiary-hot-1a66 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .alert_c1e9,
  .last-5a31,
  .dynamic-b8b1,
  .input_f770,
  .element_selected_cd30,
  .banner_a1ea,
  .caption-red-b165 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tooltip-0d6e {
    page-break-inside: avoid;
  }
}

/* css-noise: d9fc */
.ghost-box-t8 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
