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

.card_bronze_04bf:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.dropdown_simple_93e6):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. */
.dropdown_simple_93e6,
header,
.small-c967,
.dark-c410,
.list-5924,
.text_dirty_cfdd,
.text-hot-8a57,
.logo_lite_6089,
.mini_7b66 {
  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
   ============================================ */
.dropdown_simple_93e6 {
  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);
}

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

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

/* Scrolled state */
.dropdown_simple_93e6.prev_85ee {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.widget-plasma-8af1 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-1227 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.old_d892 {
  flex: 1;
}

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

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

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

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

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

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

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

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

.shade-bronze-3bcc {
  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;
}

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

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

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

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

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

.icon-old-27e6 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.dropdown-wide-a975 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .old_d892 {
    display: none;
  }
  
  .hidden_10a1 {
    display: flex;
  }
  
  .primary-a7e5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dropdown-wide-a975,
  .message_slow_2815 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .list_2b34 {
    position: relative;
  }
  
  .shade-bronze-3bcc {
    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;
  }
  
  .label_new_306a[aria-expanded="true"] + .shade-bronze-3bcc {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pink_7cf5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .icon-old-27e6 {
    gap: 8px;
  }
  
  .dropdown-wide-a975 {
    display: none;
  }
  
  .message_slow_2815 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .header-1227 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.dropdown_fixed_8727 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.frame-eae8 a:hover {
  text-decoration: underline;
}

.preview-5a51 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.message-rough-3cdf {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.under-7caf {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .component-49fc {
    grid-template-columns: 1fr;
  }
  
  .layout-0159 {
    font-size: 1.75rem;
  }
  
  .avatar-abf0 {
    order: -1;
    max-width: 100%;
  }
  
  .texture_warm_c429 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .layout-0159 {
    font-size: 1.5rem;
  }
  
  .rough_9678 {
    font-size: 1rem;
  }
  
  .frame-eae8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .texture_warm_c429 {
    max-width: 250px;
  }
}

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

.hard-7a02 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-purple-e036 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.media-purple-e036 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);
}

.media-purple-e036 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.text-hot-8a57 {
  padding: var(--space-xxl) 0;
}

.dropdown-3a53 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.plasma-40ed img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.plasma-40ed 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);
}

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

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

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

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

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

.plasma-40ed strong {
  font-weight: 600;
  color: var(--color-text);
}

.plasma-40ed a {
  color: var(--color-primary);
  text-decoration: underline;
}

.plasma-40ed a:hover {
  color: var(--color-primary-dark);
}

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

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

.aside_plasma_90b2 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) {
  .first_2b09 {
    grid-template-columns: 1fr;
  }
  
  .paper_03f4 {
    font-size: 1.75rem;
  }
  
  .plasma-40ed {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .paper_03f4 {
    font-size: 1.5rem;
  }
  
  .plasma-40ed h3 {
    font-size: 1.375rem;
  }
  
  .plasma-40ed h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.input_motion_822b {
  flex-shrink: 0;
}

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

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

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

.tabs-small-2666,
.pagination-bottom-7a14,
.module_0484 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tabs-small-2666 thead,
.pagination-bottom-7a14 thead {
  background: var(--color-primary);
  color: white;
}

.tabs-small-2666 th,
.tabs-small-2666 td,
.pagination-bottom-7a14 th,
.pagination-bottom-7a14 td,
.module_0484 th,
.module_0484 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tabs-small-2666 th,
  .tabs-small-2666 td,
  .pagination-bottom-7a14 th,
  .pagination-bottom-7a14 td,
  .module_0484 th,
  .module_0484 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tabs-small-2666,
  .pagination-bottom-7a14,
  .module_0484 {
    min-width: 600px;
  }
}

.tabs-small-2666 th,
.pagination-bottom-7a14 th,
.module_0484 th {
  font-weight: 600;
}

.tabs-small-2666 tbody tr:hover,
.pagination-bottom-7a14 tbody tr:hover,
.module_0484 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hero-d66b h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cool_f794 {
  color: #4caf50;
}

.right_b188 {
  color: #ff9800;
}

.heading-west-5d0c {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.article-active-54a3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

/* ============================================
   15. FEATURE GRID
   ============================================ */
.nav_1797 {
  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_1797 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content_2d6b .soft-68d1 {
  width: 100%;
  background: white;
}

.caption_3d10 .soft-68d1 {
  color: #667eea;
}

.filter_gas_cc4e .soft-68d1 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .mask_lower_b027 {
    padding: var(--space-md);
  }
  
  .popup_soft_cc3e {
    padding: var(--space-md);
  }
  
  .filter-in-327f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.filter-in-327f {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.disabled_4458,
.disabled_3979,
.current_2c6d,
.huge-d5ab {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.status-smooth-aad2 {
  border-color: var(--color-success);
}

.short-8c39 {
  border-color: var(--color-warning);
}

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

.status-smooth-aad2 .panel_stone_7b86 {
  background: #e8f5e9;
  color: var(--color-success);
}

.short-8c39 .panel_stone_7b86 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.basic-4c51 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.hero-6c74 {
  margin-top: var(--space-xxl);
}

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

.column-hot-dfdf {
  text-align: center;
}

.section-mini-fea3 {
  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);
}

.table-cold-3e78 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.section-mini-fea3 .dynamic_e745 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.narrow-0e2d p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.search-fixed-b1a3 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.shade-clean-a252 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.selected-03ac {
  text-align: right;
}

.selected-03ac .column-68fd {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.notification-wide-7cc2 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.copper-a42d {
  background: #fff3e0;
  color: #e65100;
}

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

.shade-hard-9f3e span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.tag-8aef {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.fixed-b85f[aria-expanded="true"] .tag-8aef {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.popup-88a7 {
  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);
}

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

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

@media (max-width: 768px) {
  .frame-rough-065e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.pressed_f0cf ul,
.accent_8902 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_e53c {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.input-clean-8e17 {
  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);
}

.input-clean-8e17:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.input-clean-8e17 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.menu_brown_814f .message-rough-3cdf {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.search_smooth_293b a:hover {
  color: white;
}

.east-1e32 {
  list-style: none;
  padding: 0;
}

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

.east-1e32 a {
  color: #b0b0b0;
  text-decoration: none;
}

.east-1e32 a:hover {
  color: white;
}

.menu-265f {
  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);
}

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

.status-84a1 a {
  color: #4caf50;
  text-decoration: none;
}

.bronze-7b64 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.header-1ca6:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-265f {
    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;
  }
  
  .layout-0159 {
    font-size: 2rem;
  }
  
  .paper_03f4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .component-49fc,
  .first_2b09 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .nav_1797,
  .alert_wood_b75c,
  .tooltip_focused_ab55,
  .title_current_2143,
  .frame-rough-065e,
  .sort_0dee,
  .shadow_current_69ae,
  .list_ac64 {
    grid-template-columns: 1fr;
  }
  
  .widget_right_453f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .text-hot-8a57 {
    padding: var(--space-lg) 0;
  }
  
  .media-purple-e036 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .media-purple-e036 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .soft-68d1 {
    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;
  }
  
  .widget_right_453f {
    grid-template-columns: 1fr;
  }
  
  .under-7caf,
  .message_mini_5dd2,
  .text_hovered_b8ec {
    flex-direction: column;
    width: 100%;
  }
  
  .silver_79d6,
  .shade_bottom_41b0,
  .under-7caf .soft-68d1,
  .message_mini_5dd2 .soft-68d1 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .layout-0159 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .paper_03f4 {
    font-size: 1.375rem;
  }
  
  .text-3281 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .summary_d5fa,
  .copper-bb53,
  .container_e22e,
  .message_advanced_78c9,
  .block-9592 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .left_a6a0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .accordion-bronze-c0ee {
    gap: var(--space-xs);
  }
  
  .dropdown_fixed_8727 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .down_f8b8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .section-mini-fea3 {
    width: 150px;
    height: 150px;
  }
  
  .table-cold-3e78 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dropdown_simple_93e6,
  .small-c967,
  .under-7caf,
  .content_e0d3,
  .logo_lite_6089,
  .mini_7b66,
  .hidden_10a1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .text-hot-8a57 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 3d92 */
.shadow-element-i4 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
