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

.hovered-db58:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.article-down-7e07):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. */
.article-down-7e07,
header,
.hard_72a7,
.west-5191,
.gallery_c91f,
.surface_09ad,
.box_rough_35f7,
.container_6318,
.column_e457 {
  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
   ============================================ */
.article-down-7e07 {
  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);
}

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

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

/* Scrolled state */
.article-down-7e07.article_7a49 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.basic-3a82 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.popup-plasma-3bab {
  flex: 1;
}

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

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

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

.element_96bc.orange-a7d2 {
  background: var(--color-primary);
  color: white;
}

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

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

.short-6448 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.active-2f64 svg {
  flex-shrink: 0;
}

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

.block-dynamic-3973: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);
}

.block-dynamic-3973 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .popup-plasma-3bab {
    display: none;
  }
  
  .focused_ed26 {
    display: flex;
  }
  
  .mask_ec26 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active-2f64,
  .block-dynamic-3973 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .status_03a8 {
    position: relative;
  }
  
  .north_b3e7 {
    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;
  }
  
  .short-6448[aria-expanded="true"] + .north_b3e7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .outline_lower_95bb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .panel_warm_797d {
    gap: 8px;
  }
  
  .active-2f64 {
    display: none;
  }
  
  .block-dynamic-3973 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .basic-3a82 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .block-dynamic-3973 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .block-dynamic-3973 svg {
    width: 14px;
    height: 14px;
  }
  
  .panel-gold-de8a {
    gap: var(--space-sm);
  }
}

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

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

.column-fixed-73c3 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.column-fixed-73c3 svg {
  flex-shrink: 0;
}

.column-fixed-73c3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.column-fixed-73c3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .element-purple-03a6 {
    grid-template-columns: 1fr;
  }
}

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

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

.block-lower-109f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.block-lower-109f strong {
  font-weight: 600;
  color: var(--color-text);
}

.block-lower-109f span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.text-9ddf {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.border-out-2b14 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .in_6a5f {
    grid-template-columns: 1fr;
  }
  
  .steel-d7a0 {
    font-size: 1.75rem;
  }
  
  .focus_ca2e {
    order: -1;
    max-width: 100%;
  }
  
  .slider_4a39 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .steel-d7a0 {
    font-size: 1.5rem;
  }
  
  .label_ea0d {
    font-size: 1rem;
  }
  
  .nav_d4bb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .slider_4a39 {
    max-width: 250px;
  }
}

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

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

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

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

.feature-pink-6915:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-0c83 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.hidden-0c83 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);
}

.hidden-0c83 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-1948 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) {
  .panel-silver-9657 {
    grid-template-columns: 1fr;
  }
  
  .lite-eeca {
    font-size: 1.75rem;
  }
  
  .badge_red_477c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .lite-eeca {
    font-size: 1.5rem;
  }
  
  .badge_red_477c h3 {
    font-size: 1.375rem;
  }
  
  .badge_red_477c h4 {
    font-size: 1.125rem;
  }
}

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

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

.hero-huge-7f5e {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.copper-ede2 {
  flex-shrink: 0;
}

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

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

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

.frame-bronze-f555,
.overlay_steel_6521,
.tertiary-d1c7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.frame-bronze-f555 thead,
.overlay_steel_6521 thead {
  background: var(--color-primary);
  color: white;
}

.frame-bronze-f555 th,
.frame-bronze-f555 td,
.overlay_steel_6521 th,
.overlay_steel_6521 td,
.tertiary-d1c7 th,
.tertiary-d1c7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .frame-bronze-f555 th,
  .frame-bronze-f555 td,
  .overlay_steel_6521 th,
  .overlay_steel_6521 td,
  .tertiary-d1c7 th,
  .tertiary-d1c7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .frame-bronze-f555,
  .overlay_steel_6521,
  .tertiary-d1c7 {
    min-width: 600px;
  }
}

.frame-bronze-f555 th,
.overlay_steel_6521 th,
.tertiary-d1c7 th {
  font-weight: 600;
}

.frame-bronze-f555 tbody tr:hover,
.overlay_steel_6521 tbody tr:hover,
.tertiary-d1c7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.easy-b198 h4 {
  color: white;
}

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

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

.texture-dirty-2ea7:last-child {
  border-bottom: none;
}

.texture-dirty-2ea7 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.texture-dirty-2ea7 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.wood-e063:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.info_current_ca7a {
  color: #4caf50;
}

.filter_full_fcd3 {
  color: #ff9800;
}

.hover-pro-87e7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.content-4fbb {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.liquid-6b72 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.banner_in_774c .table_hot_307f {
  width: 100%;
  background: white;
}

.blue_b791 .table_hot_307f {
  color: #667eea;
}

.backdrop_a22b .table_hot_307f {
  color: #f5576c;
}

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

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

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

.pink-11d8 {
  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);
}

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

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

@media (max-width: 768px) {
  .clean-fb5b {
    padding: var(--space-md);
  }
  
  .bronze-d40e {
    padding: var(--space-md);
  }
  
  .thick_b1cc {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.caption-over-b829 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.paragraph_clean_0fc6,
.section_next_f50b,
.purple-e158,
.tabs-e3c7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .sort-steel-020f {
    grid-template-columns: 1fr;
  }
}

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

.steel-e1ac {
  border-color: var(--color-success);
}

.notification-28c5 {
  border-color: var(--color-warning);
}

.input-6aaa {
  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);
}

.steel-e1ac .input-6aaa {
  background: #e8f5e9;
  color: var(--color-success);
}

.notification-28c5 .input-6aaa {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cold_d579 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.caption-center-9a07 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.left-0aea {
  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;
}

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

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

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

.progress_mini_57af {
  text-align: right;
}

.progress_mini_57af .element-small-5cec {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.over-1da0 {
  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);
}

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

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

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

.fixed-3d6c strong {
  color: var(--color-primary);
}

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

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

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

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

.modal-4fc5 {
  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);
}

.modal-4fc5:hover {
  background: var(--color-bg-alt);
}

.backdrop-east-971c {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.modal-4fc5[aria-expanded="true"] .backdrop-east-971c {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.accordion-in-86d0 {
  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);
}

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

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

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

.detail-3459,
.up_201f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.detail-3459 h4,
.up_201f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.detail-3459 ul,
.up_201f ul {
  list-style: none;
  padding: 0;
}

.detail-3459 li,
.up_201f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.link-2d62 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.south-2ab0 {
  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);
}

.paragraph-41f2 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.form-4e90 {
  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);
}

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

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

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

.form-4e90 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.blue-7f16 .box-e1fb {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.narrow_66b7 a:hover {
  color: white;
}

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

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

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

.article_acd6 a:hover {
  color: white;
}

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

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

.media-yellow-fb6e a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .pink_5631 {
    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;
  }
  
  .steel-d7a0 {
    font-size: 2rem;
  }
  
  .lite-eeca {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .in_6a5f,
  .panel-silver-9657 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .column-875a,
  .sort-steel-020f,
  .avatar_2b06,
  .fast-a4f7,
  .hot-3caa,
  .menu-3306,
  .text_712c,
  .tertiary-5f1d {
    grid-template-columns: 1fr;
  }
  
  .orange-6985 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .box_rough_35f7 {
    padding: var(--space-lg) 0;
  }
  
  .hidden-0c83 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hidden-0c83 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .table_hot_307f {
    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;
  }
  
  .orange-6985 {
    grid-template-columns: 1fr;
  }
  
  .text-9ddf,
  .texture_62e2,
  .iron-0668 {
    flex-direction: column;
    width: 100%;
  }
  
  .pro-f7b6,
  .tag-f87d,
  .text-9ddf .table_hot_307f,
  .texture_62e2 .table_hot_307f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .steel-d7a0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .lite-eeca {
    font-size: 1.375rem;
  }
  
  .block_e763 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .button-fluid-d4d6,
  .backdrop-b831,
  .logo-afeb,
  .rough-2ae9,
  .first-068f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gold_96a9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .sort-6791 {
    gap: var(--space-xs);
  }
  
  .column-fixed-73c3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .cold_8e22 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .container_pink_3084 {
    width: 150px;
    height: 150px;
  }
  
  .bright_5273 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .article-down-7e07,
  .hard_72a7,
  .text-9ddf,
  .overlay-ab1b,
  .container_6318,
  .column_e457,
  .focused_ed26 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .box_rough_35f7 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: c1ad */
.phantom-card-r7 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
