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

.notification-motion-f3b5:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.list_glass_05e6,
header,
.shade-549e,
.iron_50f1,
.notification_4cd4,
.black_b798,
.background-5413,
.tooltip_copper_c6e7,
.icon_old_62ab {
  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
   ============================================ */
.list_glass_05e6 {
  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);
}

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

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

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

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

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

.aside-new-ccb5 img {
  height: 36px;
  width: auto;
  display: block;
}

.highlight-solid-565f {
  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;
}

.section-green-6e58 {
  flex: 1;
}

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

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

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

.lower_1d98.fn-active-f7b2 {
  background: var(--color-primary);
  color: white;
}

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

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

.main-in-34e9 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.soft-22b4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.north-704a[aria-expanded="true"] .upper-feba:nth-child(2) {
  opacity: 0;
}

.north-704a[aria-expanded="true"] .upper-feba:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .section-green-6e58 {
    display: none;
  }
  
  .north-704a {
    display: flex;
  }
  
  .highlight-solid-565f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .soft-22b4,
  .container_west_59e2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .image_3688 {
    position: relative;
  }
  
  .tag_outer_fcde {
    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;
  }
  
  .main-in-34e9[aria-expanded="true"] + .tag_outer_fcde {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .overlay-a474 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .background_8d5a {
    gap: 8px;
  }
  
  .soft-22b4 {
    display: none;
  }
  
  .container_west_59e2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .aside-new-ccb5 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.dim_1ccd svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.media-4cfc a {
  color: var(--color-primary);
  text-decoration: none;
}

.media-4cfc a:hover {
  text-decoration: underline;
}

.wrapper-top-2740 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.backdrop-555e {
  display: flex;
  gap: var(--space-sm);
}

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

.full-717b {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.full-717b strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.modal-next-52f8 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .input-simple-1e91 {
    grid-template-columns: 1fr;
  }
  
  .footer-fe66 {
    font-size: 1.75rem;
  }
  
  .new-cc9a {
    order: -1;
    max-width: 100%;
  }
  
  .complex_93ff {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-fe66 {
    font-size: 1.5rem;
  }
  
  .focus_489d {
    font-size: 1rem;
  }
  
  .media-4cfc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .complex_93ff {
    max-width: 250px;
  }
}

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

.info-next-6c05 {
  background: var(--color-primary);
  color: white;
}

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

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

.pro-8ab7:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.top-842c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-2534 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;
}

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

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

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

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

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

.center-070d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.action-ed77 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) {
  .basic_ba7b {
    grid-template-columns: 1fr;
  }
  
  .center-070d {
    font-size: 1.75rem;
  }
  
  .full_54ae {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .center-070d {
    font-size: 1.5rem;
  }
  
  .full_54ae h3 {
    font-size: 1.375rem;
  }
  
  .full_54ae h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.heading_8f3a {
  flex-shrink: 0;
}

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

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

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

.pattern-ef66,
.wide-be54,
.thumbnail_0440 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pattern-ef66 thead,
.wide-be54 thead {
  background: var(--color-primary);
  color: white;
}

.pattern-ef66 th,
.pattern-ef66 td,
.wide-be54 th,
.wide-be54 td,
.thumbnail_0440 th,
.thumbnail_0440 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pattern-ef66 th,
  .pattern-ef66 td,
  .wide-be54 th,
  .wide-be54 td,
  .thumbnail_0440 th,
  .thumbnail_0440 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pattern-ef66,
  .wide-be54,
  .thumbnail_0440 {
    min-width: 600px;
  }
}

.pattern-ef66 th,
.wide-be54 th,
.thumbnail_0440 th {
  font-weight: 600;
}

.pattern-ef66 tbody tr:hover,
.wide-be54 tbody tr:hover,
.thumbnail_0440 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.primary-8ede h4 {
  color: white;
}

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

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

.pattern-thick-2c7a:last-child {
  border-bottom: none;
}

.pattern-thick-2c7a dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.pattern-thick-2c7a dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

.tall-03a3 {
  font-weight: 600;
  color: white;
}

.action-17f3 {
  list-style: none;
  padding: 0;
}

.action-17f3 li {
  padding: var(--space-xs) 0;
}

.avatar_fast_1ed3 {
  color: #4caf50;
}

.tag_new_4efd {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-tall-5492 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.summary_simple_f4cd .hero-af80 {
  width: 100%;
  background: white;
}

.widget_5314 .hero-af80 {
  color: #667eea;
}

.outline_f4cb .hero-af80 {
  color: #f5576c;
}

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

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

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

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

.backdrop-gas-fbb4 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .backdrop-gas-fbb4 {
    padding: var(--space-md);
  }
  
  .progress-f2c1 {
    padding: var(--space-md);
  }
  
  .thick_0660 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.section_hard_0c03,
.link-full-f07c,
.primary_b391,
.link-dd2b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.pro-44cb:hover {
  background: var(--color-primary-dark);
}

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

.heading-huge-9033 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.cold-ac03 .box_6dba {
  background: #e8f5e9;
  color: var(--color-success);
}

.down_f45b .box_6dba {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-down-bd7f {
  text-align: center;
}

.in-6fff {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.in-6fff .tall-03a3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.north-85b3 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.highlight-dirty-826a {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stale_e1ad {
  text-align: right;
}

.stale_e1ad .filter-f6ea {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.current-876b {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.aside-329c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-9af4 {
  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);
}

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

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

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

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

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

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

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

.active_dark_5b2c ul,
.glass_c659 ul {
  list-style: none;
  padding: 0;
}

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

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

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

.article-gas-26db {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.article-gas-26db ul {
  list-style: none;
  padding: 0;
}

.article-gas-26db li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.solid_2be5 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze_d210 {
  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) */
.fluid-f578 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.focus-inner-305c {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-inner-305c li {
  margin-bottom: var(--space-xs);
}

.focus-inner-305c a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.focus-inner-305c a:hover {
  color: white;
}

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

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

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

.content_d811 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.content_d811 a:hover {
  color: white;
}

.hard-5b1f > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.last_d887 .backdrop-555e {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.content_hard_cafe a:hover {
  color: white;
}

.card-469f {
  list-style: none;
  padding: 0;
}

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

.card-469f a {
  color: #b0b0b0;
  text-decoration: none;
}

.card-469f a:hover {
  color: white;
}

.hard-5b1f {
  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);
}

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

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

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

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

.highlight-9f69 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.highlight-9f69 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;
}

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

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

@media (max-width: 768px) {
  .hard-5b1f {
    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;
  }
  
  .footer-fe66 {
    font-size: 2rem;
  }
  
  .center-070d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .input-simple-1e91,
  .basic_ba7b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .preview-lite-ed8e,
  .upper-0b04,
  .purple-c3d6,
  .widget_ab0a,
  .north-77a9,
  .dirty_eac5,
  .pagination-selected-b43f,
  .bronze_d210,
  .fluid-f578 {
    grid-template-columns: 1fr;
  }
  
  .list_medium_9ddb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .background-5413 {
    padding: var(--space-lg) 0;
  }
  
  .tabs-2534 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs-2534 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hero-af80 {
    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;
  }
  
  .list_medium_9ddb {
    grid-template-columns: 1fr;
  }
  
  .wrapper_north_4902,
  .tertiary-clean-edf8,
  .medium_a827 {
    flex-direction: column;
    width: 100%;
  }
  
  .top-842c,
  .bronze_02e5,
  .wrapper_north_4902 .hero-af80,
  .tertiary-clean-edf8 .hero-af80 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .footer-fe66 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .center-070d {
    font-size: 1.375rem;
  }
  
  .notice_paper_8f81 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .accent-paper-b188,
  .red_dcf7,
  .form_orange_2f2b,
  .module-8f00,
  .steel_e522 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .form-dynamic-6036 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .message-4ecf {
    gap: var(--space-xs);
  }
  
  .dim_1ccd {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .east_5ddf {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .in-6fff {
    width: 150px;
    height: 150px;
  }
  
  .form-dynamic-f923 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .list_glass_05e6,
  .shade-549e,
  .wrapper_north_4902,
  .status_52ef,
  .tooltip_copper_c6e7,
  .icon_old_62ab,
  .north-704a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .background-5413 {
    page-break-inside: avoid;
  }
}

/* css-noise: f069 */
.promo-block-w4 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
