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

.menu_1aa1:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.item_next_fef6,
header,
.notice_cold_d6f9,
.icon_c456,
.focus_ace5,
.hover-4072,
.first-6236,
.last-6bef,
.active_wide_653d {
  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
   ============================================ */
.item_next_fef6 {
  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);
}

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

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

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

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

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

.outline-black-dd0e img {
  height: 36px;
  width: auto;
  display: block;
}

.paragraph_2c93 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.caption-41e1 {
  flex: 1;
}

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

.menu-cold-fc7d {
  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);
}

.menu-cold-fc7d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.menu-cold-fc7d.fn-active-55d9 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.banner-hard-50a6 {
  position: relative;
}

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

.tooltip-hot-12b7 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.frame-605e svg {
  flex-shrink: 0;
}

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

.border-2c2d: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);
}

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

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

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

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

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

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

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .caption-41e1 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .caption-41e1::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .caption-41e1.border_9d52 {
    display: block;
    right: 0;
  }
  
  .accordion_bottom_015f {
    flex-direction: column;
    gap: 0;
  }
  
  .menu-cold-fc7d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .caption-41e1::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .caption-41e1.border_9d52::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .caption-41e1 {
    display: none;
  }
  
  .black_51b9 {
    display: flex;
  }
  
  .paragraph_2c93 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .frame-605e,
  .border-2c2d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .banner-hard-50a6 {
    position: relative;
  }
  
  .tabs_549d {
    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;
  }
  
  .tooltip-hot-12b7[aria-expanded="true"] + .tabs_549d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .row_fluid_2fb4 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .copper_e223 {
    gap: 8px;
  }
  
  .frame-605e {
    display: none;
  }
  
  .border-2c2d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .outline-black-dd0e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.panel_new_742e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-02ba {
  display: flex;
  gap: var(--space-sm);
}

.caption-hovered-ea84 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .panel-hovered-56d7 {
    grid-template-columns: 1fr;
  }
  
  .last_c6a3 {
    font-size: 1.75rem;
  }
  
  .notice_48fb {
    order: -1;
    max-width: 100%;
  }
  
  .row_e510 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .last_c6a3 {
    font-size: 1.5rem;
  }
  
  .notification_plasma_af08 {
    font-size: 1rem;
  }
  
  .slow_76d9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .row_e510 {
    max-width: 250px;
  }
}

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

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

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

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

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

.gallery-silver-18c9 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.gallery-silver-18c9:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paper-1ec9 {
  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);
}

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

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

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

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

.form-middle-3099 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.form-middle-3099 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);
}

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

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

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

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

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

.form-middle-3099 strong {
  font-weight: 600;
  color: var(--color-text);
}

.form-middle-3099 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-middle-3099 a:hover {
  color: var(--color-primary-dark);
}

.column-left-24a0 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.column-left-24a0 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) {
  .detail-active-d6a4 {
    grid-template-columns: 1fr;
  }
  
  .paper-1ec9 {
    font-size: 1.75rem;
  }
  
  .form-middle-3099 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .paper-1ec9 {
    font-size: 1.5rem;
  }
  
  .form-middle-3099 h3 {
    font-size: 1.375rem;
  }
  
  .form-middle-3099 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.banner-1dea {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.aside-down-3672 {
  flex-shrink: 0;
}

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

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

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

.tertiary-gold-6032,
.rough-284b,
.focus-yellow-12b1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tertiary-gold-6032 thead,
.rough-284b thead {
  background: var(--color-primary);
  color: white;
}

.tertiary-gold-6032 th,
.tertiary-gold-6032 td,
.rough-284b th,
.rough-284b td,
.focus-yellow-12b1 th,
.focus-yellow-12b1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tertiary-gold-6032 th,
  .tertiary-gold-6032 td,
  .rough-284b th,
  .rough-284b td,
  .focus-yellow-12b1 th,
  .focus-yellow-12b1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tertiary-gold-6032,
  .rough-284b,
  .focus-yellow-12b1 {
    min-width: 600px;
  }
}

.tertiary-gold-6032 th,
.rough-284b th,
.focus-yellow-12b1 th {
  font-weight: 600;
}

.tertiary-gold-6032 tbody tr:hover,
.rough-284b tbody tr:hover,
.focus-yellow-12b1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.element-3990 h4 {
  color: white;
}

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

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

.footer-lower-8af6:last-child {
  border-bottom: none;
}

.footer-lower-8af6 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.footer-lower-8af6 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

.bottom-c4b7 {
  color: #4caf50;
}

.highlight_5d30 {
  color: #ff9800;
}

.texture-south-25e1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

.video-static-14f2 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

.notice-dim-4a0c p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .carousel-dim-116a {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.popup_brown_e3ec .mini-7c3f {
  width: 100%;
  background: white;
}

.focus-7428 .mini-7c3f {
  color: #667eea;
}

.iron_37a8 .mini-7c3f {
  color: #f5576c;
}

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

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

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

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

.out-03f2 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .out-03f2 {
    padding: var(--space-md);
  }
  
  .menu-b88c {
    padding: var(--space-md);
  }
  
  .accent_inner_5200 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.outer-689a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.shadow-7454,
.box-bb3d,
.section-8d19,
.secondary-fixed-b856 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.mini-07a3 {
  border-color: var(--color-success);
}

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

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

.mini-07a3 .frame_4794 {
  background: #e8f5e9;
  color: var(--color-success);
}

.warm_5049 .frame_4794 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-prev-5a3e {
  text-align: center;
}

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

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

.grid_medium_dc77 .table_f28e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.nav-9c5f {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.heading-0b40 {
  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;
}

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

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

.accent-pressed-0d37 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.cool_57e6 {
  text-align: right;
}

.cool_57e6 .tall-9cb0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.dim-5481 {
  background: #e8f5e9;
  color: #2e7d32;
}

.icon-wood-fa9c {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.card-glass-89b9 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.alert_a222[aria-expanded="true"] .pro-1827 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-3cd9,
.surface_d696 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.blue-3cd9 h4,
.surface_d696 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.blue-3cd9 ul,
.surface_d696 ul {
  list-style: none;
  padding: 0;
}

.blue-3cd9 li,
.surface_d696 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.frame-next-732a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.aside-41bc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.component-06ad {
  list-style: none;
  padding: 0;
  margin: 0;
}

.component-06ad li {
  margin-bottom: var(--space-xs);
}

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

.component-06ad a:hover {
  color: white;
}

.widget-black-73d2 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.widget-black-73d2 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.widget-black-73d2 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.notification_dim_d270 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.notification_dim_d270 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.notification_dim_d270 a:hover {
  color: white;
}

.hero-dirty-83fc > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .info-6097,
  .aside-41bc {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.photo_c203 .element-02ba {
  color: #4caf50;
  font-size: 0.875rem;
}

.item-c924 {
  list-style: none;
  padding: 0;
}

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

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

.item-c924 a:hover {
  color: white;
}

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

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

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

.fixed_6373 a:hover {
  color: white;
}

.hero-dirty-83fc {
  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);
}

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

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

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

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

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

.in_95be a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

.card-stale-d6e3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-dirty-83fc {
    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;
  }
  
  .last_c6a3 {
    font-size: 2rem;
  }
  
  .paper-1ec9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .panel-hovered-56d7,
  .detail-active-d6a4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focus_paper_1ea7,
  .frame-light-d273,
  .carousel-dim-116a,
  .dropdown-0b4a,
  .button_1d45,
  .gallery-27a0,
  .orange_0004,
  .info-6097,
  .aside-41bc {
    grid-template-columns: 1fr;
  }
  
  .green_9d9f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .first-6236 {
    padding: var(--space-lg) 0;
  }
  
  .link_70be li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .link_70be li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .mini-7c3f {
    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;
  }
  
  .green_9d9f {
    grid-template-columns: 1fr;
  }
  
  .modal_copper_1a3f,
  .short-6820,
  .primary-first-085e {
    flex-direction: column;
    width: 100%;
  }
  
  .input_83c5,
  .frame_purple_979f,
  .modal_copper_1a3f .mini-7c3f,
  .short-6820 .mini-7c3f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .last_c6a3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .paper-1ec9 {
    font-size: 1.375rem;
  }
  
  .gradient_hot_a586 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .highlight_3171,
  .notice-dim-4a0c,
  .text-pressed-d67a,
  .status_fluid_b2c5,
  .focus_full_f7ad {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .banner_0ab8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .backdrop_4726 {
    gap: var(--space-xs);
  }
  
  .panel_new_742e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .light-ab88 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .grid_medium_dc77 {
    width: 150px;
    height: 150px;
  }
  
  .stale_34af {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .item_next_fef6,
  .notice_cold_d6f9,
  .modal_copper_1a3f,
  .inner-a7fd,
  .last-6bef,
  .active_wide_653d,
  .black_51b9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .first-6236 {
    page-break-inside: avoid;
  }
}

/* css-noise: e56d */
.shadow-element-d2 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
