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

.message_f82a:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.easy_350e):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. */
.easy_350e,
header,
.shade-north-349d,
.header_622c,
.video_rough_4db5,
.cold-5262,
.gas_dcf7,
.module_e941,
.module_a226 {
  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
   ============================================ */
.easy_350e {
  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);
}

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

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

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

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

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

.green-192d img {
  height: 36px;
  width: auto;
  display: block;
}

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

.brown-bc33 {
  flex: 1;
}

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

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

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

.text_over_1881.text-a6da {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.alert-last-61cc {
  position: relative;
}

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

.mask-current-45d3 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.dirty_2871 svg {
  flex-shrink: 0;
}

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

.avatar-pressed-1876: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);
}

.avatar-pressed-1876 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.thumbnail-35c2[aria-expanded="true"] .primary-action-d960:nth-child(2) {
  opacity: 0;
}

.thumbnail-35c2[aria-expanded="true"] .primary-action-d960:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .brown-bc33::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .brown-bc33.pagination-edcc {
    display: block;
    right: 0;
  }
  
  .icon-wide-9b2d {
    flex-direction: column;
    gap: 0;
  }
  
  .text_over_1881 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .brown-bc33::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;
  }
  
  .brown-bc33.pagination-edcc::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .brown-bc33 {
    display: none;
  }
  
  .thumbnail-35c2 {
    display: flex;
  }
  
  .preview_7cff {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dirty_2871,
  .avatar-pressed-1876 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .alert-last-61cc {
    position: relative;
  }
  
  .right_2347 {
    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;
  }
  
  .mask-current-45d3[aria-expanded="true"] + .right_2347 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .article-huge-e813 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .texture_a7da {
    gap: 8px;
  }
  
  .dirty_2871 {
    display: none;
  }
  
  .avatar-pressed-1876 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .green-192d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.dropdown-cb1a svg {
  flex-shrink: 0;
}

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

.dropdown-cb1a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.message-226e {
  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) {
  .message-226e {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .message-226e {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

.active-west-7c7a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.orange-83c2 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .header_glass_2c2c {
    grid-template-columns: 1fr;
  }
  
  .message-226e {
    font-size: 1.75rem;
  }
  
  .hard-deb8 {
    order: -1;
    max-width: 100%;
  }
  
  .orange-83c2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .message-226e {
    font-size: 1.5rem;
  }
  
  .motion-c1f6 {
    font-size: 1rem;
  }
  
  .label_c9aa {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .orange-83c2 {
    max-width: 250px;
  }
}

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

.content-down-3dc2 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.panel-in-cf56 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-down-7b86 {
  background: var(--color-bg-section);
}

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

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

.medium-189d {
  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);
}

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

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

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

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

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

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

.article-d282 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.column-middle-68b9 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.column-middle-68b9 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) {
  .message_fast_045c {
    grid-template-columns: 1fr;
  }
  
  .medium-189d {
    font-size: 1.75rem;
  }
  
  .article-d282 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .medium-189d {
    font-size: 1.5rem;
  }
  
  .article-d282 h3 {
    font-size: 1.375rem;
  }
  
  .article-d282 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.over-7e93 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.highlight_6275 {
  flex-shrink: 0;
}

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

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

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

.summary_0b61,
.grid-first-cf3d,
.header-f04b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.summary_0b61 thead,
.grid-first-cf3d thead {
  background: var(--color-primary);
  color: white;
}

.summary_0b61 th,
.summary_0b61 td,
.grid-first-cf3d th,
.grid-first-cf3d td,
.header-f04b th,
.header-f04b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .summary_0b61 th,
  .summary_0b61 td,
  .grid-first-cf3d th,
  .grid-first-cf3d td,
  .header-f04b th,
  .header-f04b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .summary_0b61,
  .grid-first-cf3d,
  .header-f04b {
    min-width: 600px;
  }
}

.summary_0b61 th,
.grid-first-cf3d th,
.header-f04b th {
  font-weight: 600;
}

.summary_0b61 tbody tr:hover,
.grid-first-cf3d tbody tr:hover,
.header-f04b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.disabled_smooth_a309 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.dropdown-motion-bce8 {
  font-weight: 600;
  color: white;
}

.caption-down-8c26 {
  list-style: none;
  padding: 0;
}

.caption-down-8c26 li {
  padding: var(--space-xs) 0;
}

.grid-south-8cec {
  color: #4caf50;
}

.gradient_wood_ec9a {
  color: #ff9800;
}

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

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

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

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

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

.disabled-last-5854 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-4c24 {
  margin-top: var(--space-xxl);
}

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

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

@media (max-width: 768px) {
  .module-hard-5e04 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.left_51ba .hot_ce60 {
  width: 100%;
  background: white;
}

.dropdown_594f .hot_ce60 {
  color: #667eea;
}

.status-upper-4717 .hot_ce60 {
  color: #f5576c;
}

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

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

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

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

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

.message-over-38de {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .cool-c1a6 {
    padding: var(--space-md);
  }
  
  .message-over-38de {
    padding: var(--space-md);
  }
  
  .new_6a09 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.caption-02ce li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.glass-f811,
.box_middle_4902,
.component_black_5abf,
.form_clean_63c3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.info-short-dcdd:hover {
  background: var(--color-primary-dark);
}

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

.media-fresh-7eb8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.banner-3f7f {
  border-color: var(--color-warning);
}

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

.icon-3371 .outline_3c67 {
  background: #e8f5e9;
  color: var(--color-success);
}

.banner-3f7f .outline_3c67 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-soft-6443 {
  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);
}

.image-094b {
  text-align: center;
}

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

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

.column-8a72 .dropdown-motion-bce8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass-d434 {
  border: 2px solid #4caf50;
}

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

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

.tag-dark-8557 {
  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;
}

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

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

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

.tag_action_4b14 {
  text-align: right;
}

.tag_action_4b14 .middle-3eee {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.gold-c090 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.primary-right-14b9 {
  max-width: 900px;
  margin: 0 auto;
}

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

.nav-up-0db4 {
  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);
}

.nav-up-0db4:hover {
  background: var(--color-bg-alt);
}

.hidden-3e3e {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.nav-up-0db4[aria-expanded="true"] .hidden-3e3e {
  transform: rotate(180deg);
}

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

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

.column-simple-323e ul,
.column-simple-323e ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.column-simple-323e li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.highlight-copper-4272,
.rough_2759 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.highlight-copper-4272 h4,
.rough_2759 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.highlight-copper-4272 ul,
.rough_2759 ul {
  list-style: none;
  padding: 0;
}

.highlight-copper-4272 li,
.rough_2759 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.badge-last-2a6b {
  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);
}

.main-9300 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_medium_86f2 .pressed_f35c {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.focus_5735 a:hover {
  color: white;
}

.article-wood-f09f {
  list-style: none;
  padding: 0;
}

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

.article-wood-f09f a {
  color: #b0b0b0;
  text-decoration: none;
}

.article-wood-f09f a:hover {
  color: white;
}

.mask-hard-de35 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .mask-hard-de35 {
    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;
  }
  
  .message-226e {
    font-size: 2rem;
  }
  
  .medium-189d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .header_glass_2c2c,
  .message_fast_045c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .form-over-1494,
  .row_small_b68b,
  .module-hard-5e04,
  .picture_c709,
  .shadow_west_32ec,
  .logo-fresh-e0b5,
  .upper_fcbd,
  .wrapper-thick-0313 {
    grid-template-columns: 1fr;
  }
  
  .list_d533 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gas_dcf7 {
    padding: var(--space-lg) 0;
  }
  
  .accordion_paper_87de li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .accordion_paper_87de li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hot_ce60 {
    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;
  }
  
  .list_d533 {
    grid-template-columns: 1fr;
  }
  
  .active-west-7c7a,
  .container_south_c778,
  .box-huge-ec9d {
    flex-direction: column;
    width: 100%;
  }
  
  .item_f490,
  .panel-in-cf56,
  .active-west-7c7a .hot_ce60,
  .container_south_c778 .hot_ce60 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .message-226e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .medium-189d {
    font-size: 1.375rem;
  }
  
  .input_3e95 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dark-2e6b,
  .highlight-iron-ff62,
  .tabs_dc32,
  .south-6744,
  .chip-e235 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .content-187c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tabs_first_22b4 {
    gap: var(--space-xs);
  }
  
  .dropdown-cb1a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gradient-9207 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .column-8a72 {
    width: 150px;
    height: 150px;
  }
  
  .accordion_a51c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .easy_350e,
  .shade-north-349d,
  .active-west-7c7a,
  .gas_00f2,
  .module_e941,
  .module_a226,
  .thumbnail-35c2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gas_dcf7 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 87b7 */
.shadow-element-p7 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
