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

.summary-6004:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.last_e9a4,
header,
.menu-1e23,
.header_soft_cc60,
.small_1b64,
.mask_pressed_1182,
.carousel-044a,
.simple_5604,
.solid_61e9 {
  max-width: none;
}

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

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

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

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

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

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

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

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

.dropdown-silver-67f2 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.north_8beb {
  flex: 1;
}

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

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

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

.banner_3509.fn-active-41c9 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.last-b0fa {
  position: relative;
}

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

.video-bright-67a6 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.plasma_4857 svg {
  flex-shrink: 0;
}

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

.summary-32da: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);
}

.summary-32da svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .north_8beb {
    display: none;
  }
  
  .last-2667 {
    display: flex;
  }
  
  .over-c64f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .plasma_4857,
  .summary-32da {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .last-b0fa {
    position: relative;
  }
  
  .paragraph_out_f8ad {
    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;
  }
  
  .video-bright-67a6[aria-expanded="true"] + .paragraph_out_f8ad {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .thumbnail_in_53e9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .next_7ae6 {
    gap: 8px;
  }
  
  .plasma_4857 {
    display: none;
  }
  
  .summary-32da {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .static_c580 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.link_e46f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.carousel-91b5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.carousel-91b5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tag-0b68 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .title_motion_aec8 {
    grid-template-columns: 1fr;
  }
  
  .last_e773 {
    font-size: 1.75rem;
  }
  
  .mini-3736 {
    order: -1;
    max-width: 100%;
  }
  
  .silver_7099 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .last_e773 {
    font-size: 1.5rem;
  }
  
  .west_ddeb {
    font-size: 1rem;
  }
  
  .carousel-91b5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .silver_7099 {
    max-width: 250px;
  }
}

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

.label-down-70ff {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.element-35de {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.texture-up-c9e2 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.texture-up-c9e2 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);
}

.texture-up-c9e2 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;
}

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

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

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

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

.lower-24b4 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern_in_3cd4 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) {
  .footer_west_30e1 {
    grid-template-columns: 1fr;
  }
  
  .active_in_cef4 {
    font-size: 1.75rem;
  }
  
  .copper_f46a {
    max-width: 100%;
  }
}

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

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

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

.row-narrow-9f1e {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.gold_c16c {
  flex-shrink: 0;
}

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

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

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

.aside_af0d,
.outline_c0b4,
.stale_ccb8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.aside_af0d thead,
.outline_c0b4 thead {
  background: var(--color-primary);
  color: white;
}

.aside_af0d th,
.aside_af0d td,
.outline_c0b4 th,
.outline_c0b4 td,
.stale_ccb8 th,
.stale_ccb8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .aside_af0d th,
  .aside_af0d td,
  .outline_c0b4 th,
  .outline_c0b4 td,
  .stale_ccb8 th,
  .stale_ccb8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .aside_af0d,
  .outline_c0b4,
  .stale_ccb8 {
    min-width: 600px;
  }
}

.aside_af0d th,
.outline_c0b4 th,
.stale_ccb8 th {
  font-weight: 600;
}

.aside_af0d tbody tr:hover,
.outline_c0b4 tbody tr:hover,
.stale_ccb8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.purple_2942 h4 {
  color: white;
}

.item-soft-6c61 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.new_e343:last-child {
  border-bottom: none;
}

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

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

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

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

.box-3739:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.shade-f367 {
  color: #4caf50;
}

.silver_42af {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-stale-b1fd .advanced_ec24 {
  width: 100%;
  background: white;
}

.item_e5af .advanced_ec24 {
  color: #667eea;
}

.cold-7ae1 .advanced_ec24 {
  color: #f5576c;
}

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

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

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

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

.content-dim-92b9 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .content-dim-92b9 {
    padding: var(--space-md);
  }
  
  .pagination_9bc8 {
    padding: var(--space-md);
  }
  
  .selected_0632 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.row-565c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.component_7127,
.tabs-hard-d967,
.box_5f5b,
.menu-f49c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.gold-09e2 {
  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-09e2 {
    font-size: 0.625rem;
  }
}

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

.block-739b:hover {
  background: var(--color-primary-dark);
}

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

.detail-2d26 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.module-new-3be7 {
  border-color: var(--color-success);
}

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

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

.module-new-3be7 .active-cc77 {
  background: #e8f5e9;
  color: var(--color-success);
}

.media_ec47 .active-cc77 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.panel-lite-8cc4 {
  margin-top: var(--space-xxl);
}

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

.filter_first_9382 {
  text-align: center;
}

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

.component-blue-57f4 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.soft-6105 .element_94d1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.wrapper-motion-77be {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.item-6d1e {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.card-2b1c {
  border: 2px solid #4caf50;
}

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

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

.video-blue-d479 {
  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;
}

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

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

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

.complex-2d2c {
  text-align: right;
}

.complex-2d2c .form_07b9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.picture-f89b {
  background: #e8f5e9;
  color: #2e7d32;
}

.footer-medium-4fe0 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-8bb7 {
  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);
}

.hidden-8bb7:hover {
  background: var(--color-bg-alt);
}

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

.hidden-8bb7[aria-expanded="true"] .outline_055b {
  transform: rotate(180deg);
}

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

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

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

.row-6b45 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.input_new_3862,
.header-4230 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.input_new_3862 h4,
.header-4230 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.input_new_3862 ul,
.header-4230 ul {
  list-style: none;
  padding: 0;
}

.input_new_3862 li,
.header-4230 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.item-last-64a0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.item-last-64a0 ul {
  list-style: none;
  padding: 0;
}

.item-last-64a0 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.column-plasma-bbbb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-soft-3ab6 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-soft-3ab6 li {
  margin-bottom: var(--space-xs);
}

.detail-soft-3ab6 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.detail-soft-3ab6 a:hover {
  color: white;
}

.steel_3593 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

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

.steel_3593 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.modal-pressed-4717 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.modal-pressed-4717 a:hover {
  color: white;
}

.tertiary-0560 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.plasma_47a6 .lower_14a9 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.soft_8321 a:hover {
  color: white;
}

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

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

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

.tag_dirty_3b66 a:hover {
  color: white;
}

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

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

.carousel-0d8d a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.accordion-bdd7 a:hover {
  color: white;
}

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

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

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

.last-b60c:hover {
  text-decoration: underline;
}

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

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

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .last_e773 {
    font-size: 2rem;
  }
  
  .active_in_cef4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .title_motion_aec8,
  .footer_west_30e1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .logo-hot-ac9a,
  .sidebar-first-a030,
  .tertiary-f5ee,
  .frame_up_4664,
  .thumbnail-hot-fdb5,
  .row-3764,
  .active_1ff6,
  .pink_381d,
  .liquid_8d56 {
    grid-template-columns: 1fr;
  }
  
  .next_1248 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .carousel-044a {
    padding: var(--space-lg) 0;
  }
  
  .texture-up-c9e2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .texture-up-c9e2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .advanced_ec24 {
    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;
  }
  
  .next_1248 {
    grid-template-columns: 1fr;
  }
  
  .tag-0b68,
  .notification_c9cf,
  .shade-a651 {
    flex-direction: column;
    width: 100%;
  }
  
  .alert-9796,
  .element-35de,
  .tag-0b68 .advanced_ec24,
  .notification_c9cf .advanced_ec24 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .last_e773 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .active_in_cef4 {
    font-size: 1.375rem;
  }
  
  .text-b426 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dirty_d65b,
  .border-2dcc,
  .footer_medium_3e7a,
  .description_clean_1f7a,
  .copper-616a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gold-09e2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .article-a442 {
    gap: var(--space-xs);
  }
  
  .link_e46f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .sidebar_prev_bef1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .soft-6105 {
    width: 150px;
    height: 150px;
  }
  
  .component-blue-57f4 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .last_e9a4,
  .menu-1e23,
  .tag-0b68,
  .focused_d99a,
  .simple_5604,
  .solid_61e9,
  .last-2667 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .carousel-044a {
    page-break-inside: avoid;
  }
}

/* css-noise: bfe2 */
.promo-block-m6 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.3;
}
