/* ============================================
   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)
   ============================================ */
.logo-outer-81d9 {
  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;
}

.logo-outer-81d9:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.pressed_e377,
header,
.badge-old-256a,
.content_blue_e65a,
.icon-clean-e5c4,
.tiny_d941,
.black-66b8,
.border-liquid-9a8a,
.mask-7497 {
  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
   ============================================ */
.pressed_e377 {
  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);
}

.tooltip-fast-d168 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.input_18f6 {
  flex: 1;
}

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

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

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

.selected_54f9.fn-active-d133 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.active_current_6681 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.active_current_6681 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.block-new-e1cd[aria-expanded="true"] .grid-4f6f:nth-child(2) {
  opacity: 0;
}

.block-new-e1cd[aria-expanded="true"] .grid-4f6f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .input_18f6 {
    display: none;
  }
  
  .block-new-e1cd {
    display: flex;
  }
  
  .pattern_3539 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active_current_6681,
  .image_c958 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .white_78ce {
    position: relative;
  }
  
  .button-7ff1 {
    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;
  }
  
  .pattern_east_cdec[aria-expanded="true"] + .button-7ff1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .border_665f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

.active-60f5 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.active-60f5 svg {
  flex-shrink: 0;
}

.active-60f5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.active-60f5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.wide-1012 a:hover {
  text-decoration: underline;
}

.tooltip-blue-539d {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.warm-3e89 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.heading-out-5b48 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-6bd1 {
  position: relative;
  text-align: center;
}

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

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

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

.detail-glass-599b {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .aside_7a24 {
    grid-template-columns: 1fr;
  }
  
  .stone-3272 {
    font-size: 1.75rem;
  }
  
  .heading-out-5b48 {
    order: -1;
    max-width: 100%;
  }
  
  .button-6bd1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .stone-3272 {
    font-size: 1.5rem;
  }
  
  .breadcrumb_smooth_9959 {
    font-size: 1rem;
  }
  
  .wide-1012 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .button-6bd1 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.cool-0a74 {
  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-silver-2154 {
  background: var(--color-primary);
  color: white;
}

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

.short-49b5 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.short-49b5:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.focus-selected-74ee {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.basic-4f5f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-first-5d39 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.frame-first-5d39 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) {
  .west_f172 {
    grid-template-columns: 1fr;
  }
  
  .stale-f52e {
    font-size: 1.75rem;
  }
  
  .liquid_212a {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.border-full-1889 {
  flex-shrink: 0;
}

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

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

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

.title-pro-df87,
.liquid_38ec,
.bright-ab08 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.title-pro-df87 thead,
.liquid_38ec thead {
  background: var(--color-primary);
  color: white;
}

.title-pro-df87 th,
.title-pro-df87 td,
.liquid_38ec th,
.liquid_38ec td,
.bright-ab08 th,
.bright-ab08 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .title-pro-df87 th,
  .title-pro-df87 td,
  .liquid_38ec th,
  .liquid_38ec td,
  .bright-ab08 th,
  .bright-ab08 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .title-pro-df87,
  .liquid_38ec,
  .bright-ab08 {
    min-width: 600px;
  }
}

.title-pro-df87 th,
.liquid_38ec th,
.bright-ab08 th {
  font-weight: 600;
}

.title-pro-df87 tbody tr:hover,
.liquid_38ec tbody tr:hover,
.bright-ab08 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fast-a9cb h4 {
  color: white;
}

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

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

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

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

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

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

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

.element-509a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.medium-0305 {
  color: #4caf50;
}

.alert_a1d0 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.dropdown-632e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.modal-493a {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.light_87b8 .cool-0a74 {
  width: 100%;
  background: white;
}

.tag_c0c4 .cool-0a74 {
  color: #667eea;
}

.block_6d92 .cool-0a74 {
  color: #f5576c;
}

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

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

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

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

.media-green-80dd h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .media-green-80dd {
    padding: var(--space-md);
  }
  
  .feature_orange_a648 {
    padding: var(--space-md);
  }
  
  .tag_focused_c273 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.easy_1a30,
.fixed-2a9d,
.section-aa5f,
.preview_clean_585a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.icon-soft-05b5 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

.new-382f h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.photo-3b8e {
  border-color: var(--color-success);
}

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

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

.photo-3b8e .panel_black_7842 {
  background: #e8f5e9;
  color: var(--color-success);
}

.static_7bf2 .panel_black_7842 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.chip-large-5a6b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.card-old-430b {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.smooth-74a6 {
  margin-top: var(--space-xxl);
}

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

.south-e257 {
  text-align: center;
}

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

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

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

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

.column-fast-15a7 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.status-motion-33cd {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-d704 {
  text-align: right;
}

.pattern-d704 .detail-580d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.tiny-a1c2 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.alert-pink-8e41 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.small-8d4f {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

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

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

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

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

.tag_right_a10d ul,
.box_inner_442e ul {
  list-style: none;
  padding: 0;
}

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

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

@media (max-width: 768px) {
  .shade-mini-9bf8 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.upper_f086 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.form_d574 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_14f9 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.accordion_14f9 a:hover {
  color: white;
}

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

.bronze-559a 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);
}

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

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

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

.gas-2020 a:hover {
  color: white;
}

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

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

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

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

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

.selected_77f7 .warm-3e89 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.summary_small_13e8 a:hover {
  color: white;
}

.focused-b896 {
  list-style: none;
  padding: 0;
}

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

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

.focused-b896 a:hover {
  color: white;
}

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

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

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

.up-2ee9 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .notice_d862 {
    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;
  }
  
  .stone-3272 {
    font-size: 2rem;
  }
  
  .stale-f52e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .aside_7a24,
  .west_f172 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .info-selected-ba34,
  .background_brown_91df,
  .summary-stone-d61e,
  .button_dynamic_ed96,
  .section_ed66,
  .shade-mini-9bf8,
  .outline_a8b5,
  .soft_e0ba,
  .green_17ec {
    grid-template-columns: 1fr;
  }
  
  .table-wide-f983 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .black-66b8 {
    padding: var(--space-lg) 0;
  }
  
  .prev_c333 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .prev_c333 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cool-0a74 {
    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-wide-f983 {
    grid-template-columns: 1fr;
  }
  
  .new_2d2f,
  .first-1d25,
  .advanced_20aa {
    flex-direction: column;
    width: 100%;
  }
  
  .focus-selected-74ee,
  .basic-4f5f,
  .new_2d2f .cool-0a74,
  .first-1d25 .cool-0a74 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .stone-3272 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .stale-f52e {
    font-size: 1.375rem;
  }
  
  .bright-e5d4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .short-2de7,
  .active_4486,
  .container_large_7eea,
  .secondary_old_83de,
  .pagination-7b5b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gradient_fluid_9798 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .white_2889 {
    gap: var(--space-xs);
  }
  
  .active-60f5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .notice_hovered_f1ea {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .primary_c6e4 {
    width: 150px;
    height: 150px;
  }
  
  .alert_6aa1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pressed_e377,
  .badge-old-256a,
  .new_2d2f,
  .hover_31c3,
  .border-liquid-9a8a,
  .mask-7497,
  .block-new-e1cd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .black-66b8 {
    page-break-inside: avoid;
  }
}

/* css-noise: 7dac */
.widget-item-t7 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
