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

.advanced_d41e:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.main-fc42,
header,
.photo_active_2ce6,
.tabs_gold_541c,
.image_1016,
.bright_8a74,
.old_ac16,
.block-bbc8,
.panel_mini_54e4 {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

.texture-86d5 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.border_49fb {
  flex: 1;
}

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

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

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

.chip_left_7c27.fn-active-f9a3 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.table-pink-a0ae {
  position: relative;
}

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

.right-cb0b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.warm_47de svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.summary-30f0[aria-expanded="true"] .hero-4a14:nth-child(2) {
  opacity: 0;
}

.summary-30f0[aria-expanded="true"] .hero-4a14:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .border_49fb {
    display: none;
  }
  
  .summary-30f0 {
    display: flex;
  }
  
  .hidden_1f8e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .warm_47de,
  .item-d2a8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .table-pink-a0ae {
    position: relative;
  }
  
  .dirty_c75d {
    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;
  }
  
  .right-cb0b[aria-expanded="true"] + .dirty_c75d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .bottom_6e1f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .sort-f9f8 {
    gap: 8px;
  }
  
  .warm_47de {
    display: none;
  }
  
  .item-d2a8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .texture-86d5 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.last-3d38 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.last-3d38 svg {
  flex-shrink: 0;
}

.last-3d38 a {
  color: var(--color-primary);
  text-decoration: none;
}

.last-3d38 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-4b1c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .right_087a {
    grid-template-columns: 1fr;
  }
  
  .mini_f965 {
    font-size: 1.75rem;
  }
  
  .focus_0238 {
    order: -1;
    max-width: 100%;
  }
  
  .carousel-4b1c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .mini_f965 {
    font-size: 1.5rem;
  }
  
  .action_cbb0 {
    font-size: 1rem;
  }
  
  .lite_ba9e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .carousel-4b1c {
    max-width: 250px;
  }
}

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

.text-green-89a8 {
  background: var(--color-primary);
  color: white;
}

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

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

.top-67c2:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.header-8d01 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-5abf {
  background: var(--color-bg-section);
}

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

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

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

.paragraph-white-190f {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.out-877b {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.out-877b 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) {
  .bottom_f119 {
    grid-template-columns: 1fr;
  }
  
  .large-6129 {
    font-size: 1.75rem;
  }
  
  .right_3308 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .large-6129 {
    font-size: 1.5rem;
  }
  
  .right_3308 h3 {
    font-size: 1.375rem;
  }
  
  .right_3308 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.surface-plasma-33a7 {
  flex-shrink: 0;
}

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

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

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

.top-29d7,
.feature_bb56,
.notice_smooth_54e2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.top-29d7 thead,
.feature_bb56 thead {
  background: var(--color-primary);
  color: white;
}

.top-29d7 th,
.top-29d7 td,
.feature_bb56 th,
.feature_bb56 td,
.notice_smooth_54e2 th,
.notice_smooth_54e2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .top-29d7 th,
  .top-29d7 td,
  .feature_bb56 th,
  .feature_bb56 td,
  .notice_smooth_54e2 th,
  .notice_smooth_54e2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .top-29d7,
  .feature_bb56,
  .notice_smooth_54e2 {
    min-width: 600px;
  }
}

.top-29d7 th,
.feature_bb56 th,
.notice_smooth_54e2 th {
  font-weight: 600;
}

.top-29d7 tbody tr:hover,
.feature_bb56 tbody tr:hover,
.notice_smooth_54e2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.bronze_b22b h4 {
  color: white;
}

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

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

.mask-dfdb:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.button-advanced-f18f {
  font-weight: 600;
  color: white;
}

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

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

.notice_dee9 {
  color: #4caf50;
}

.search-cold-7e75 {
  color: #ff9800;
}

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

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

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

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

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

.header-48cc {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb_pressed_9d3b .info-wide-c842 {
  width: 100%;
  background: white;
}

.active-ccd7 .info-wide-c842 {
  color: #667eea;
}

.menu-center-2509 .info-wide-c842 {
  color: #f5576c;
}

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

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

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

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

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

.out-9a78 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .summary_3d0d {
    padding: var(--space-md);
  }
  
  .out-9a78 {
    padding: var(--space-md);
  }
  
  .notification_advanced_3578 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.article-545e li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.hover_tall_c6a5,
.background_cb4f,
.input_d380,
.slider_motion_bd70 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture-white-e037 {
  border-color: var(--color-success);
}

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

.banner-inner-c0af {
  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);
}

.texture-white-e037 .banner-inner-c0af {
  background: #e8f5e9;
  color: var(--color-success);
}

.purple_c38d .banner-inner-c0af {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.mask-1e55 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.tooltip-1d72 {
  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);
}

.mask_89f6 {
  text-align: center;
}

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

.article-smooth-32d3 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.row_white_4d75 .button-advanced-f18f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.item-4e84 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.paragraph-brown-5c3d {
  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;
}

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

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

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

.info_fresh_c822 {
  text-align: right;
}

.info_fresh_c822 .section-north-b194 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.progress-warm-0ee7 {
  background: #e3f2fd;
  color: #1565c0;
}

.popup-9ae4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .table-next-41ed {
    grid-template-columns: 1fr;
  }
}

.hover-2846,
.first_33ff {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hover-2846 h4,
.first_33ff h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hover-2846 ul,
.first_33ff ul {
  list-style: none;
  padding: 0;
}

.hover-2846 li,
.first_33ff li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.lower-319d {
  font-style: italic;
}

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

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

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

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

.link-tall-3ebe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

.tooltip-lite-4a30 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.modal_orange_daad .wrapper_glass_1938 {
  color: #4caf50;
  font-size: 0.875rem;
}

.menu-749b {
  list-style: none;
  padding: 0;
}

.menu-749b li {
  margin-bottom: var(--space-xs);
}

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

.menu-749b a:hover {
  color: white;
}

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

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

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

.wood_d297 a:hover {
  color: white;
}

.shadow-lower-b743 {
  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);
}

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

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

.hidden-8a8a {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .shadow-lower-b743 {
    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;
  }
  
  .mini_f965 {
    font-size: 2rem;
  }
  
  .large-6129 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .right_087a,
  .bottom_f119 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .message-simple-7657,
  .element_6ad5,
  .active_7771,
  .east_8869,
  .table-next-41ed,
  .east_7049,
  .down-da8f,
  .component-0f95 {
    grid-template-columns: 1fr;
  }
  
  .thumbnail_liquid_760e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .old_ac16 {
    padding: var(--space-lg) 0;
  }
  
  .primary_up_899f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .primary_up_899f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .info-wide-c842 {
    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;
  }
  
  .thumbnail_liquid_760e {
    grid-template-columns: 1fr;
  }
  
  .tag_stone_9c89,
  .link-tall-3ebe,
  .liquid_ca82 {
    flex-direction: column;
    width: 100%;
  }
  
  .down_8161,
  .header-8d01,
  .tag_stone_9c89 .info-wide-c842,
  .link-tall-3ebe .info-wide-c842 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .mini_f965 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .large-6129 {
    font-size: 1.375rem;
  }
  
  .outer_0a7c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .highlight-1080,
  .background_east_3641,
  .secondary-2fd0,
  .feature_hard_a839,
  .gallery_9dd9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid-full-8755 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .popup_upper_8d8a {
    gap: var(--space-xs);
  }
  
  .last-3d38 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .border-25e2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .row_white_4d75 {
    width: 150px;
    height: 150px;
  }
  
  .article-smooth-32d3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .main-fc42,
  .photo_active_2ce6,
  .tag_stone_9c89,
  .notification_copper_069e,
  .block-bbc8,
  .panel_mini_54e4,
  .summary-30f0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .old_ac16 {
    page-break-inside: avoid;
  }
}

/* css-noise: e35c */
.widget-item-e1 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
