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

.slider_center_672f:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.search-7f6a):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. */
.search-7f6a,
header,
.paragraph_clean_1a6c,
.paragraph-162f,
.hard_63bc,
.surface_old_ec06,
.photo-309c,
.hidden-da85,
.main_stone_b0a0 {
  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
   ============================================ */
.search-7f6a {
  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);
}

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

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

/* Scrolled state */
.search-7f6a.message-62fb {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.hover_pro_fbfc img {
  height: 36px;
  width: auto;
  display: block;
}

.shadow-5c1f {
  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;
}

.chip-95db {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.outline-3320 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.nav-north-9a44 {
  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;
}

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

.nav-north-9a44 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .chip-95db {
    display: none;
  }
  
  .silver-1905 {
    display: flex;
  }
  
  .shadow-5c1f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .nav-north-9a44,
  .feature_focused_3ffc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .outline-3320 {
    position: relative;
  }
  
  .plasma-f618 {
    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;
  }
  
  .caption_brown_bf79[aria-expanded="true"] + .plasma-f618 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .sidebar_static_c5b5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .next-4699 {
    gap: 8px;
  }
  
  .nav-north-9a44 {
    display: none;
  }
  
  .feature_focused_3ffc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hover_pro_fbfc img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.fluid_fd5b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.picture-252f a {
  color: var(--color-primary);
  text-decoration: none;
}

.picture-252f a:hover {
  text-decoration: underline;
}

.border-212c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.new-4d5c {
  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;
}

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

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

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

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

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

.component-220d {
  position: relative;
  text-align: center;
}

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

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

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

.tabs-orange-6ccb {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .pagination-gold-a0b8 {
    grid-template-columns: 1fr;
  }
  
  .liquid_6928 {
    font-size: 1.75rem;
  }
  
  .media-7693 {
    order: -1;
    max-width: 100%;
  }
  
  .component-220d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .liquid_6928 {
    font-size: 1.5rem;
  }
  
  .brown_7d9a {
    font-size: 1rem;
  }
  
  .picture-252f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .component-220d {
    max-width: 250px;
  }
}

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

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

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

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

.message-4c65:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-stale-7d95 {
  list-style: none;
  counter-reset: toc-counter;
}

.box-stale-7d95 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.box-stale-7d95 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);
}

.box-stale-7d95 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;
}

.box-stale-7d95 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

.warm-2efb {
  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);
}

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

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

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

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

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

.paragraph-up-c13b img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.paragraph-up-c13b 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);
}

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

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

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

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

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

.paragraph-up-c13b strong {
  font-weight: 600;
  color: var(--color-text);
}

.paragraph-up-c13b a {
  color: var(--color-primary);
  text-decoration: underline;
}

.paragraph-up-c13b a:hover {
  color: var(--color-primary-dark);
}

.background-845a {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.background-845a 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) {
  .summary-8b22 {
    grid-template-columns: 1fr;
  }
  
  .shadow_large_f7ec {
    font-size: 1.75rem;
  }
  
  .paragraph-up-c13b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shadow_large_f7ec {
    font-size: 1.5rem;
  }
  
  .paragraph-up-c13b h3 {
    font-size: 1.375rem;
  }
  
  .paragraph-up-c13b h4 {
    font-size: 1.125rem;
  }
}

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

.layout-plasma-efa9 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.image-37bd {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.item_tall_1832 {
  flex-shrink: 0;
}

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

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

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

.basic_45df,
.chip_first_a83b,
.focused-2597 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.basic_45df thead,
.chip_first_a83b thead {
  background: var(--color-primary);
  color: white;
}

.basic_45df th,
.basic_45df td,
.chip_first_a83b th,
.chip_first_a83b td,
.focused-2597 th,
.focused-2597 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .basic_45df th,
  .basic_45df td,
  .chip_first_a83b th,
  .chip_first_a83b td,
  .focused-2597 th,
  .focused-2597 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .basic_45df,
  .chip_first_a83b,
  .focused-2597 {
    min-width: 600px;
  }
}

.basic_45df th,
.chip_first_a83b th,
.focused-2597 th {
  font-weight: 600;
}

.basic_45df tbody tr:hover,
.chip_first_a83b tbody tr:hover,
.focused-2597 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.bright-3bc7 h4 {
  color: white;
}

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

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

.footer-first-102c:last-child {
  border-bottom: none;
}

.footer-first-102c dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.footer-first-102c dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.selected-93ab {
  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);
}

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

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

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

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

.warm_47f9 {
  color: #4caf50;
}

.picture-gold-276e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.highlight-5c10 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay_hard_18ef .action-7032 {
  width: 100%;
  background: white;
}

.fixed_8a3c .action-7032 {
  color: #667eea;
}

.pagination_gas_6218 .action-7032 {
  color: #f5576c;
}

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

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

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

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

.gold-86a4 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .gold-86a4 {
    padding: var(--space-md);
  }
  
  .modal_easy_ab83 {
    padding: var(--space-md);
  }
  
  .short-e490 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.chip_79b5,
.content_6896,
.shadow_inner_d24d,
.item_bf37 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.banner-lower-f1bd {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .banner-lower-f1bd {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.photo-4dbf {
  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);
}

.label_1425 .photo-4dbf {
  background: #e8f5e9;
  color: var(--color-success);
}

.bronze-bab3 .photo-4dbf {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.content-tall-546d {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.texture-tall-8c05 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.disabled-dynamic-297d {
  text-align: center;
}

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

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

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

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

.breadcrumb-bottom-337f p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.row-old-9063 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-8c42 {
  text-align: right;
}

.upper-8c42 .last_cef2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.summary-1377 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.accordion-44bd {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-6f79,
.pagination-bronze-a9d7 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hard-6f79 h4,
.pagination-bronze-a9d7 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hard-6f79 ul,
.pagination-bronze-a9d7 ul {
  list-style: none;
  padding: 0;
}

.hard-6f79 li,
.pagination-bronze-a9d7 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .accent-fluid-8d24 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.motion-3f99 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.hot-3e3e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.row-pro-2039 {
  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);
}

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

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

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

.row-pro-2039 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.blue_2f34 .slider_clean_76d0 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.fixed_30c4 a:hover {
  color: white;
}

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

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

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

.center_522c a:hover {
  color: white;
}

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

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

.caption-8c75 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.huge-557b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .basic_dcd9 {
    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;
  }
  
  .liquid_6928 {
    font-size: 2rem;
  }
  
  .shadow_large_f7ec {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pagination-gold-a0b8,
  .summary-8b22 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .orange_fe44,
  .preview_large_6ff9,
  .north_a4c7,
  .orange_d474,
  .article_ba2c,
  .accent-fluid-8d24,
  .focus-8da3,
  .hovered_f96e {
    grid-template-columns: 1fr;
  }
  
  .video_iron_69fe {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .photo-309c {
    padding: var(--space-lg) 0;
  }
  
  .box-stale-7d95 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .box-stale-7d95 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .action-7032 {
    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;
  }
  
  .video_iron_69fe {
    grid-template-columns: 1fr;
  }
  
  .hovered-6836,
  .row_67cd,
  .media-e3ed {
    flex-direction: column;
    width: 100%;
  }
  
  .complex_e46b,
  .tag_up_ee6e,
  .hovered-6836 .action-7032,
  .row_67cd .action-7032 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .liquid_6928 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .shadow_large_f7ec {
    font-size: 1.375rem;
  }
  
  .sort_bronze_3a12 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .action_0980,
  .tiny-5b67,
  .gradient_1fca,
  .chip-b8ec,
  .right-ec63 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .banner-lower-f1bd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .description_988f {
    gap: var(--space-xs);
  }
  
  .fluid_fd5b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .selected-93ab {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .summary_705f {
    width: 150px;
    height: 150px;
  }
  
  .table_under_3fb8 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .search-7f6a,
  .paragraph_clean_1a6c,
  .hovered-6836,
  .info_727a,
  .hidden-da85,
  .main_stone_b0a0,
  .silver-1905 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .photo-309c {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a714 */
.widget-item-l1 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
