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

.content-47d0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.avatar_bronze_8133,
header,
.button_focused_0aee,
.sort-fb8a,
.tooltip-c7db,
.in_0abb,
.tiny_0370,
.hovered_6219,
.preview_middle_5acf {
  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
   ============================================ */
.avatar_bronze_8133 {
  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);
}

.sort-medium-3d87 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.avatar_bronze_8133.accent-active-88ab {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.main-pink-d1ef {
  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;
}

.fresh-2902 {
  flex: 1;
}

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

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

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

.brown_be5d.fn-active-806a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar_fa30 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .fresh-2902 {
    display: none;
  }
  
  .texture_01c3 {
    display: flex;
  }
  
  .main-pink-d1ef {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .sidebar_fa30,
  .footer-a09c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .alert_9c1b {
    position: relative;
  }
  
  .accent_blue_eeab {
    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;
  }
  
  .info_bdcb[aria-expanded="true"] + .accent_blue_eeab {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .picture-c4b1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dynamic_84b5 {
    gap: 8px;
  }
  
  .sidebar_fa30 {
    display: none;
  }
  
  .footer-a09c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .backdrop_selected_f014 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.stone-090c {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stone-090c svg {
  flex-shrink: 0;
}

.stone-090c a {
  color: var(--color-primary);
  text-decoration: none;
}

.stone-090c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.gradient-motion-0d75 a {
  color: var(--color-primary);
  text-decoration: none;
}

.gradient-motion-0d75 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.footer-red-d006 {
  display: flex;
  gap: var(--space-sm);
}

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

.button-7a62 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.button-7a62 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.gradient-48f5 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.icon-pink-5a59 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .north_6b1c {
    grid-template-columns: 1fr;
  }
  
  .medium-3cb0 {
    font-size: 1.75rem;
  }
  
  .description_625a {
    order: -1;
    max-width: 100%;
  }
  
  .plasma_7ebd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .medium-3cb0 {
    font-size: 1.5rem;
  }
  
  .north-3103 {
    font-size: 1rem;
  }
  
  .gradient-motion-0d75 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .plasma_7ebd {
    max-width: 250px;
  }
}

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

.large-26cf {
  background: var(--color-primary);
  color: white;
}

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

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

.breadcrumb-89f3:hover {
  background: var(--color-primary);
  color: white;
}

.section-right-7bc9 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.section-right-7bc9:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

.thumbnail-center-be24 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.liquid-0a2b {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-83f0 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.image-83f0 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) {
  .column-7134 {
    grid-template-columns: 1fr;
  }
  
  .overlay_fixed_006a {
    font-size: 1.75rem;
  }
  
  .footer-d79a {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.caption_white_856a {
  flex-shrink: 0;
}

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

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

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

.caption_liquid_7cbf,
.notification-dirty-02c8,
.pattern-ff78 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.caption_liquid_7cbf thead,
.notification-dirty-02c8 thead {
  background: var(--color-primary);
  color: white;
}

.caption_liquid_7cbf th,
.caption_liquid_7cbf td,
.notification-dirty-02c8 th,
.notification-dirty-02c8 td,
.pattern-ff78 th,
.pattern-ff78 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .caption_liquid_7cbf th,
  .caption_liquid_7cbf td,
  .notification-dirty-02c8 th,
  .notification-dirty-02c8 td,
  .pattern-ff78 th,
  .pattern-ff78 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .caption_liquid_7cbf,
  .notification-dirty-02c8,
  .pattern-ff78 {
    min-width: 600px;
  }
}

.caption_liquid_7cbf th,
.notification-dirty-02c8 th,
.pattern-ff78 th {
  font-weight: 600;
}

.caption_liquid_7cbf tbody tr:hover,
.notification-dirty-02c8 tbody tr:hover,
.pattern-ff78 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.main_pink_9630 h4 {
  color: white;
}

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

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

.background-ae85:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.border-c813 {
  color: #4caf50;
}

.preview_dark_6d60 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar_e746 .plasma_1e89 {
  width: 100%;
  background: white;
}

.sidebar_1b07 .plasma_1e89 {
  color: #667eea;
}

.item-green-9286 .plasma_1e89 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.shade-gold-2c3a {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.photo-5f78 {
  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);
}

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

.box-down-eb98 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .feature_f79c {
    padding: var(--space-md);
  }
  
  .box-down-eb98 {
    padding: var(--space-md);
  }
  
  .detail_focused_6c0e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.blue-62f5,
.button_157e,
.carousel_8fc0,
.cold_615b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.icon-tall-3c79 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.pagination-liquid-c8c6:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.border-tiny-8e89 {
  border-color: var(--color-warning);
}

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

.avatar-3460 .active_bronze_5ac6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.border-tiny-8e89 .active_bronze_5ac6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.preview-gold-8ccf {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

.feature-729d {
  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);
}

.out_92ca {
  text-align: center;
}

.mini-4a56 {
  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);
}

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

.mini-4a56 .chip_eff5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.media-dim-37b7 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.input-basic-d2c5 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.tiny-8d51 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_7720 {
  text-align: right;
}

.gradient_7720 .panel_warm_b5b1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.table-orange-ca2a {
  background: #e3f2fd;
  color: #1565c0;
}

.preview-2eb8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-693d {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.popup_wide_7bba[aria-expanded="true"] .list-693d {
  transform: rotate(180deg);
}

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

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

.image-lower-2b59 ul,
.image-lower-2b59 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.image-lower-2b59 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.button-5e70 {
  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);
}

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

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

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

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

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

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

.popup_left_9b8a h4,
.over_7355 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.popup_left_9b8a ul,
.over_7355 ul {
  list-style: none;
  padding: 0;
}

.popup_left_9b8a li,
.over_7355 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.thumbnail-6652 {
  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-6652 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.picture-glass-bafc ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.primary-plasma-a373 {
  font-style: italic;
}

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

.message-55e7 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb_action_6b52 .footer-red-d006 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.pagination_current_ac61 a:hover {
  color: white;
}

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

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

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

.highlight_east_31e2 a:hover {
  color: white;
}

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

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

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

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

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

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

.advanced-a2dd:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .active-aa00 {
    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;
  }
  
  .medium-3cb0 {
    font-size: 2rem;
  }
  
  .overlay_fixed_006a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .north_6b1c,
  .column-7134 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .element_153d,
  .wood_6ae6,
  .label-9705,
  .upper_5690,
  .header_c2d9,
  .thumbnail-6652,
  .item-top-ec71,
  .steel_dfdb {
    grid-template-columns: 1fr;
  }
  
  .table_62bc {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tiny_0370 {
    padding: var(--space-lg) 0;
  }
  
  .narrow_cb87 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .narrow_cb87 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .plasma_1e89 {
    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;
  }
  
  .table_62bc {
    grid-template-columns: 1fr;
  }
  
  .gradient-48f5,
  .element_69c9,
  .carousel-04ac {
    flex-direction: column;
    width: 100%;
  }
  
  .form_dirty_af34,
  .thumbnail-center-be24,
  .gradient-48f5 .plasma_1e89,
  .element_69c9 .plasma_1e89 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .medium-3cb0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .overlay_fixed_006a {
    font-size: 1.375rem;
  }
  
  .medium-9051 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .paragraph-d529,
  .selected_5317,
  .clean_7819,
  .medium_88a8,
  .heading-stale-9fcd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .info-bdfb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .progress_pink_8b4d {
    gap: var(--space-xs);
  }
  
  .stone-090c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tooltip-8696 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .mini-4a56 {
    width: 150px;
    height: 150px;
  }
  
  .gallery_2ad3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .avatar_bronze_8133,
  .button_focused_0aee,
  .gradient-48f5,
  .message-55e7,
  .hovered_6219,
  .preview_middle_5acf,
  .texture_01c3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tiny_0370 {
    page-break-inside: avoid;
  }
}

/* css-noise: 015f */
.widget-item-x5 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
