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

.gold_df75:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .block-smooth-44c1 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .block-smooth-44c1 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.liquid_2a33,
header,
.selected_591f,
.picture-hard-f3ea,
.detail-980e,
.slider-2516,
.column_medium_e95b,
.bright_8b3e,
.pink-9bef {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

.widget-3ebc {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.modal-0686 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.panel_static_ff16 {
  flex: 1;
}

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

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

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

.column-f62c.hero_d316 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.avatar-north-9138 {
  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;
}

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

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

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

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

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

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

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

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

.shadow_stone_0aa2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .panel_static_ff16 {
    display: none;
  }
  
  .tertiary_static_9ab4 {
    display: flex;
  }
  
  .hard-bd36 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .shadow_stone_0aa2,
  .gallery_f48a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pink_c246 {
    position: relative;
  }
  
  .avatar-north-9138 {
    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;
  }
  
  .breadcrumb_pro_0e0e[aria-expanded="true"] + .avatar-north-9138 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .feature_203a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .paper-7e7c {
    gap: 8px;
  }
  
  .shadow_stone_0aa2 {
    display: none;
  }
  
  .gallery_f48a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .modal-0686 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.lower_84bf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

.shade-f723 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .shade-f723 {
    font-size: 2rem;
  }
}

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

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

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

@media (max-width: 768px) {
  .box-smooth-25f2 {
    grid-template-columns: 1fr;
  }
}

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

.photo-current-9361 {
  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;
}

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

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

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

.notice-fluid-fe0b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.top-c4bb {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .picture-29d7 {
    grid-template-columns: 1fr;
  }
  
  .shade-f723 {
    font-size: 1.75rem;
  }
  
  .green_bd12 {
    order: -1;
    max-width: 100%;
  }
  
  .top-c4bb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shade-f723 {
    font-size: 1.5rem;
  }
  
  .label-easy-67a3 {
    font-size: 1rem;
  }
  
  .action_9e3a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .top-c4bb {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-06ac img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.blue-06ac 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);
}

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

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

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

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

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

.blue-06ac strong {
  font-weight: 600;
  color: var(--color-text);
}

.blue-06ac a {
  color: var(--color-primary);
  text-decoration: underline;
}

.blue-06ac a:hover {
  color: var(--color-primary-dark);
}

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

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

.feature_63f0 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) {
  .content-e583 {
    grid-template-columns: 1fr;
  }
  
  .frame_e703 {
    font-size: 1.75rem;
  }
  
  .blue-06ac {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .frame_e703 {
    font-size: 1.5rem;
  }
  
  .blue-06ac h3 {
    font-size: 1.375rem;
  }
  
  .blue-06ac h4 {
    font-size: 1.125rem;
  }
}

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

.message-white-dc7c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.picture-3bfb {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.hidden-3ff4 {
  flex-shrink: 0;
}

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

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

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

.texture-soft-53f4,
.card-b957,
.message-7e0a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.texture-soft-53f4 thead,
.card-b957 thead {
  background: var(--color-primary);
  color: white;
}

.texture-soft-53f4 th,
.texture-soft-53f4 td,
.card-b957 th,
.card-b957 td,
.message-7e0a th,
.message-7e0a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .texture-soft-53f4 th,
  .texture-soft-53f4 td,
  .card-b957 th,
  .card-b957 td,
  .message-7e0a th,
  .message-7e0a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .texture-soft-53f4,
  .card-b957,
  .message-7e0a {
    min-width: 600px;
  }
}

.texture-soft-53f4 th,
.card-b957 th,
.message-7e0a th {
  font-weight: 600;
}

.texture-soft-53f4 tbody tr:hover,
.card-b957 tbody tr:hover,
.message-7e0a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.column_6e8e h4 {
  color: white;
}

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

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

.out-1ead:last-child {
  border-bottom: none;
}

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

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

.element-gas-854c {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.item-inner-d405:hover {
  text-decoration: underline;
}

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

.element-rough-8656 {
  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);
}

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

.hidden-560e {
  font-weight: 600;
  color: white;
}

.chip-south-0757 {
  list-style: none;
  padding: 0;
}

.chip-south-0757 li {
  padding: var(--space-xs) 0;
}

.label_2306 {
  color: #4caf50;
}

.picture-top-920e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark_4fe0 .pressed-d15a {
  width: 100%;
  background: white;
}

.west_4c22 .pressed-d15a {
  color: #667eea;
}

.primary_3616 .pressed-d15a {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .easy_ec16 {
    padding: var(--space-md);
  }
  
  .notification_dynamic_698a {
    padding: var(--space-md);
  }
  
  .first-c781 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.wrapper-west-ab52,
.section_53dc,
.in_9f1c,
.summary_7896 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.frame-8d16:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.nav-bottom-f9fc {
  border-color: var(--color-success);
}

.caption-dynamic-d2df {
  border-color: var(--color-warning);
}

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

.nav-bottom-f9fc .element_short_8229 {
  background: #e8f5e9;
  color: var(--color-success);
}

.caption-dynamic-d2df .element_short_8229 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.action-886c {
  margin-top: var(--space-xxl);
}

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

.accordion_3e31 {
  text-align: center;
}

.backdrop-center-50be {
  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);
}

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

.backdrop-center-50be .hidden-560e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.modal-down-1a03 p {
  margin-bottom: var(--space-md);
}

.grid-complex-11b5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-first-d993 {
  border: 2px solid #4caf50;
}

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

.slider-outer-6c7c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.wide-3308 {
  text-align: right;
}

.wide-3308 .header-dirty-ed10 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.fast-3720 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.badge-outer-1f03 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas-8e38 {
  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);
}

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

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

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

.description-09af,
.sort-f7ce {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.description-09af h4,
.sort-f7ce h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.description-09af ul,
.sort-f7ce ul {
  list-style: none;
  padding: 0;
}

.description-09af li,
.sort-f7ce li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.header-warm-8b10 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.header-warm-8b10 ul {
  list-style: none;
  padding: 0;
}

.header-warm-8b10 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.shade_3abd {
  font-style: italic;
}

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

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

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

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

.alert-lite-27a1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.out-20b7 {
  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);
}

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

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

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

.out-20b7 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.title-b128 .hero_e282 {
  color: #4caf50;
  font-size: 0.875rem;
}

.video-d778 {
  list-style: none;
  padding: 0;
}

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

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

.video-d778 a:hover {
  color: white;
}

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

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

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

.disabled_current_ce22 a:hover {
  color: white;
}

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

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

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

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

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

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

.selected-d7d1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .icon_left_e373 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .shade-f723 {
    font-size: 2rem;
  }
  
  .frame_e703 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .picture-29d7,
  .content-e583 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .badge-86f2,
  .wide_cd08,
  .logo_copper_800c,
  .footer_fresh_8b4c,
  .next-2ce3,
  .preview_4471,
  .up_4d1d,
  .brown_b5f4 {
    grid-template-columns: 1fr;
  }
  
  .smooth_d219 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .column_medium_e95b {
    padding: var(--space-lg) 0;
  }
  
  .heading_2006 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .heading_2006 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pressed-d15a {
    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;
  }
  
  .smooth_d219 {
    grid-template-columns: 1fr;
  }
  
  .notice-fluid-fe0b,
  .alert-lite-27a1,
  .notice-solid-f15f {
    flex-direction: column;
    width: 100%;
  }
  
  .pro_4a4a,
  .hovered_7568,
  .notice-fluid-fe0b .pressed-d15a,
  .alert-lite-27a1 .pressed-d15a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shade-f723 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .frame_e703 {
    font-size: 1.375rem;
  }
  
  .focus-dim-8d66 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .main_5ff5,
  .purple-d338,
  .paper-dcba,
  .complex_c8cb,
  .icon-tiny-6a34 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .pagination_fixed_9dc6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .lower-cf46 {
    gap: var(--space-xs);
  }
  
  .lower_84bf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .element-rough-8656 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .backdrop-center-50be {
    width: 150px;
    height: 150px;
  }
  
  .form_hard_d061 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .liquid_2a33,
  .selected_591f,
  .notice-fluid-fe0b,
  .header-6144,
  .bright_8b3e,
  .pink-9bef,
  .tertiary_static_9ab4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .column_medium_e95b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: afa8 */
.ghost-box-r9 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
