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

.gallery-black-ddeb:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.modal-plasma-666c,
header,
.next_8e2e,
.badge-clean-9aca,
.gas_776d,
.west-0126,
.gas_f41b,
.tooltip-cb28,
.fast-9b2f {
  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
   ============================================ */
.modal-plasma-666c {
  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);
}

.content-7cf0 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.modal-plasma-666c.steel_64a5 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.upper-fa3d img {
  height: 36px;
  width: auto;
  display: block;
}

.preview-741d {
  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;
}

.active_smooth_aecc {
  flex: 1;
}

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

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

.photo-basic-4736:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.photo-basic-4736.fn-active-59d4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.shade-stale-6a4e {
  position: relative;
}

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

.bottom-d350 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.list-dark-5d8a {
  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;
}

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

.list-dark-5d8a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .active_smooth_aecc {
    display: none;
  }
  
  .widget-fda9 {
    display: flex;
  }
  
  .preview-741d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .list-dark-5d8a,
  .basic_08fe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .shade-stale-6a4e {
    position: relative;
  }
  
  .sidebar_400a {
    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;
  }
  
  .bottom-d350[aria-expanded="true"] + .sidebar_400a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .component-a660 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery-886b {
    gap: 8px;
  }
  
  .list-dark-5d8a {
    display: none;
  }
  
  .basic_08fe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .upper-fa3d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.mask-b98c svg {
  flex-shrink: 0;
}

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

.mask-b98c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.out-91ef {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.out-91ef strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.table-hard-f231 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.shadow-glass-36ea {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .grid-dirty-2f7a {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-9f78 {
    font-size: 1.75rem;
  }
  
  .frame_yellow_b990 {
    order: -1;
    max-width: 100%;
  }
  
  .table-hard-f231 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .thumbnail-9f78 {
    font-size: 1.5rem;
  }
  
  .texture-dirty-9f31 {
    font-size: 1rem;
  }
  
  .gallery_smooth_ac67 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .table-hard-f231 {
    max-width: 250px;
  }
}

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

.heading-3031 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.outline-silver-94bd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.container-brown-1c98 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.bottom-f35a 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;
}

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

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

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

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

.table-left-89e1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.easy_cdde 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) {
  .pattern_c2e3 {
    grid-template-columns: 1fr;
  }
  
  .outline-2bd0 {
    font-size: 1.75rem;
  }
  
  .slider_6a93 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .outline-2bd0 {
    font-size: 1.5rem;
  }
  
  .slider_6a93 h3 {
    font-size: 1.375rem;
  }
  
  .slider_6a93 h4 {
    font-size: 1.125rem;
  }
}

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

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

.notification-action-07ce {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.background-outer-0ce2 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.highlight-c6b1 {
  flex-shrink: 0;
}

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

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

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

.highlight_hard_fcaa,
.shade_cddd,
.disabled-pressed-3583 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.highlight_hard_fcaa thead,
.shade_cddd thead {
  background: var(--color-primary);
  color: white;
}

.highlight_hard_fcaa th,
.highlight_hard_fcaa td,
.shade_cddd th,
.shade_cddd td,
.disabled-pressed-3583 th,
.disabled-pressed-3583 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .highlight_hard_fcaa th,
  .highlight_hard_fcaa td,
  .shade_cddd th,
  .shade_cddd td,
  .disabled-pressed-3583 th,
  .disabled-pressed-3583 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .highlight_hard_fcaa,
  .shade_cddd,
  .disabled-pressed-3583 {
    min-width: 600px;
  }
}

.highlight_hard_fcaa th,
.shade_cddd th,
.disabled-pressed-3583 th {
  font-weight: 600;
}

.highlight_hard_fcaa tbody tr:hover,
.shade_cddd tbody tr:hover,
.disabled-pressed-3583 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.purple_ca3a h4 {
  color: white;
}

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

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

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

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

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

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

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

.huge-5d4b:hover {
  text-decoration: underline;
}

.modal-small-084b {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.modal-north-2259 {
  list-style: none;
  padding: 0;
}

.modal-north-2259 li {
  padding: var(--space-xs) 0;
}

.title_down_d8ab {
  color: #4caf50;
}

.highlight_yellow_92ec {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade_5afe .active_7262 {
  width: 100%;
  background: white;
}

.smooth_c9bb .active_7262 {
  color: #667eea;
}

.texture-b3aa .active_7262 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.breadcrumb-light-5b81 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.breadcrumb-short-9e5d {
  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);
}

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

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

@media (max-width: 768px) {
  .focused_7122 {
    padding: var(--space-md);
  }
  
  .shade_yellow_65db {
    padding: var(--space-md);
  }
  
  .box_4774 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.heading-lower-d7fa,
.hard_082e,
.hovered-713d,
.footer-static-ba1d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview_073e .menu-stale-b8fd {
  background: #e8f5e9;
  color: var(--color-success);
}

.frame_a0c6 .menu-stale-b8fd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.element-inner-7a81 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.sort-0ccd {
  margin-top: var(--space-xxl);
}

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

.glass_263a {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-6d7f {
  border: 2px solid #4caf50;
}

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

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

.logo-down-fb71 {
  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;
}

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

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

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

.tabs-liquid-8776 {
  text-align: right;
}

.tabs-liquid-8776 .brown-c38c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.hero-complex-9a99 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.avatar-light-3eb7 {
  background: #e8f5e9;
  color: #2e7d32;
}

.video-7ed3 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.basic-46d4 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.header-left-4eec {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.header_85f2[aria-expanded="true"] .header-left-4eec {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.widget-6f5b {
  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);
}

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

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

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

.overlay-new-e0dd,
.notice_75e6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.overlay-new-e0dd h4,
.notice_75e6 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.overlay-new-e0dd ul,
.notice_75e6 ul {
  list-style: none;
  padding: 0;
}

.overlay-new-e0dd li,
.notice_75e6 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

.description-top-a5f1 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.gallery-tall-b585 {
  font-style: italic;
}

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

.cold-0eca {
  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;
}

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

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

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

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

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

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

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

.box-white-6cd1 {
  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);
}

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

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

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

.box-white-6cd1 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.pagination_fresh_937d a:hover {
  color: white;
}

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

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

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

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

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

.brown_bafa a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .summary-narrow-6d12,
  .under_ba1e {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.surface_cc4d .shade_rough_ecf4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.slider-in-b625 {
  list-style: none;
  padding: 0;
}

.slider-in-b625 li {
  margin-bottom: var(--space-xs);
}

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

.slider-in-b625 a:hover {
  color: white;
}

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

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

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

.dark_83ca a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hidden_blue_ab96 {
    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;
  }
  
  .thumbnail-9f78 {
    font-size: 2rem;
  }
  
  .outline-2bd0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .grid-dirty-2f7a,
  .pattern_c2e3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .icon-adbe,
  .backdrop_217c,
  .outer_2ae3,
  .center_097c,
  .pro-7413,
  .dirty_10e3,
  .secondary_medium_760f,
  .summary-narrow-6d12,
  .under_ba1e {
    grid-template-columns: 1fr;
  }
  
  .widget-41a2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gas_f41b {
    padding: var(--space-lg) 0;
  }
  
  .bottom-f35a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .bottom-f35a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .active_7262 {
    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;
  }
  
  .widget-41a2 {
    grid-template-columns: 1fr;
  }
  
  .last-cef7,
  .summary-eee1,
  .message_876e {
    flex-direction: column;
    width: 100%;
  }
  
  .logo_0d9a,
  .item_rough_d9c4,
  .last-cef7 .active_7262,
  .summary-eee1 .active_7262 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .thumbnail-9f78 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .outline-2bd0 {
    font-size: 1.375rem;
  }
  
  .container_fixed_5c14 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outline-silver-94bd,
  .wrapper_75f5,
  .logo-south-1d25,
  .thumbnail_6606,
  .prev_cc75 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .accordion_3814 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .label_afb9 {
    gap: var(--space-xs);
  }
  
  .mask-b98c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion_ad22 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .first_998f {
    width: 150px;
    height: 150px;
  }
  
  .container_purple_bd17 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .modal-plasma-666c,
  .next_8e2e,
  .last-cef7,
  .cold-0eca,
  .tooltip-cb28,
  .fast-9b2f,
  .widget-fda9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gas_f41b {
    page-break-inside: avoid;
  }
}

/* css-noise: 4795 */
.ghost-box-e9 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
