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

.gradient_cool_4d96:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.fluid-edd6,
header,
.description-3849,
.large_b251,
.simple-fd32,
.shadow-e7dd,
.content-6f88,
.inner-7f54,
.chip_bc5e {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

.panel-edc5 {
  flex: 1;
}

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

.medium-96e8 {
  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);
}

.medium-96e8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.medium-96e8.dirty_70ce {
  background: var(--color-primary);
  color: white;
}

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

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

.last-21ca svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.primary-8985 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tooltip-7124[aria-expanded="true"] .cool-2c50:nth-child(2) {
  opacity: 0;
}

.tooltip-7124[aria-expanded="true"] .cool-2c50:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .panel-edc5 {
    display: none;
  }
  
  .tooltip-7124 {
    display: flex;
  }
  
  .basic-a249 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .primary-8985,
  .light-eef4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .aside_fbb9 {
    position: relative;
  }
  
  .module_532f {
    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;
  }
  
  .last-21ca[aria-expanded="true"] + .module_532f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .focused_a691 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .avatar_soft_ec85 {
    gap: 8px;
  }
  
  .primary-8985 {
    display: none;
  }
  
  .light-eef4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .motion_57fa img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.section_3047 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.heading-center-3c89 a {
  color: var(--color-primary);
  text-decoration: none;
}

.heading-center-3c89 a:hover {
  text-decoration: underline;
}

.tag-out-b2f3 {
  color: var(--color-text-lighter);
}

.hero-cool-e619 {
  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) {
  .hero-cool-e619 {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.banner-gold-d88f {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dynamic-027b {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.aside-silver-5c9e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .tall-61cc {
    grid-template-columns: 1fr;
  }
  
  .hero-cool-e619 {
    font-size: 1.75rem;
  }
  
  .banner-gold-d88f {
    order: -1;
    max-width: 100%;
  }
  
  .dynamic-027b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-cool-e619 {
    font-size: 1.5rem;
  }
  
  .disabled_f010 {
    font-size: 1rem;
  }
  
  .heading-center-3c89 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .dynamic-027b {
    max-width: 250px;
  }
}

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

.red-a442 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-steel-1d72 {
  list-style: none;
  counter-reset: toc-counter;
}

.media-steel-1d72 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.media-steel-1d72 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);
}

.media-steel-1d72 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;
}

.media-steel-1d72 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_wood_6a19 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) {
  .carousel-lite-6087 {
    grid-template-columns: 1fr;
  }
  
  .pagination_9f22 {
    font-size: 1.75rem;
  }
  
  .next-3166 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.modal_1119 {
  flex-shrink: 0;
}

.tertiary-steel-1bab strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.grid-25c9,
.slider-7d1e,
.row_gold_fd6b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.grid-25c9 thead,
.slider-7d1e thead {
  background: var(--color-primary);
  color: white;
}

.grid-25c9 th,
.grid-25c9 td,
.slider-7d1e th,
.slider-7d1e td,
.row_gold_fd6b th,
.row_gold_fd6b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .grid-25c9 th,
  .grid-25c9 td,
  .slider-7d1e th,
  .slider-7d1e td,
  .row_gold_fd6b th,
  .row_gold_fd6b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .grid-25c9,
  .slider-7d1e,
  .row_gold_fd6b {
    min-width: 600px;
  }
}

.grid-25c9 th,
.slider-7d1e th,
.row_gold_fd6b th {
  font-weight: 600;
}

.grid-25c9 tbody tr:hover,
.slider-7d1e tbody tr:hover,
.row_gold_fd6b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.dropdown-4300 h4 {
  color: white;
}

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

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

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

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

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

.highlight-slow-76cf {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.background-230b:hover {
  text-decoration: underline;
}

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

.accordion_fresh_7cdb {
  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_fresh_7cdb span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.bright_102a {
  color: #4caf50;
}

.blue_7824 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-prev-0167 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.detail-1945 .accent_ad61 {
  width: 100%;
  background: white;
}

.form-c382 .accent_ad61 {
  color: #667eea;
}

.old-a5dd .accent_ad61 {
  color: #f5576c;
}

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

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

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

.banner-up-5d04 {
  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);
}

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

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

@media (max-width: 768px) {
  .sort_ea61 {
    padding: var(--space-md);
  }
  
  .info-d01d {
    padding: var(--space-md);
  }
  
  .cold-7ce6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.lite-9b9c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.label_out_fb16,
.carousel_static_0ae8,
.card-stone-de04,
.content_ca33 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.wrapper-fresh-68b5 {
  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) {
  .wrapper-fresh-68b5 {
    font-size: 0.625rem;
  }
}

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

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

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

.tag-pressed-eb2a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.section-tall-126c {
  border-color: var(--color-success);
}

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

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

.section-tall-126c .soft-6e82 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tooltip_tall_d346 .soft-6e82 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.table-9a7a {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.video_260d {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.mask-01be {
  margin-bottom: var(--space-xl);
}

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

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

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

.mask-down-1eac {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.active-purple-78ba {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.pagination-4624 {
  border: 2px solid #4caf50;
}

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

.container-narrow-11b6 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.dirty_e7d2 {
  text-align: right;
}

.dirty_e7d2 .media-center-bc93 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.feature-8ed5 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.text-slow-9724 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.text_cc34[aria-expanded="true"] .form-a29b {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-abeb,
.shadow_orange_65fb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.outline-abeb h4,
.shadow_orange_65fb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.outline-abeb ul,
.shadow_orange_65fb ul {
  list-style: none;
  padding: 0;
}

.outline-abeb li,
.shadow_orange_65fb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.focus-new-0c8e {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

.component-full-aa2b {
  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);
}

.breadcrumb-e49e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.paragraph-cold-7182 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.pro-f262 .list_hovered_10a8 {
  color: #4caf50;
  font-size: 0.875rem;
}

.text-ffe5 {
  list-style: none;
  padding: 0;
}

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

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

.text-ffe5 a:hover {
  color: white;
}

.middle-1a35 {
  list-style: none;
  padding: 0;
}

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

.middle-1a35 a {
  color: #b0b0b0;
  text-decoration: none;
}

.middle-1a35 a:hover {
  color: white;
}

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

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

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

.layout-yellow-d4b2 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .current_02a5 {
    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;
  }
  
  .hero-cool-e619 {
    font-size: 2rem;
  }
  
  .pagination_9f22 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tall-61cc,
  .carousel-lite-6087 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary-rough-4841,
  .input_77aa,
  .image-11f3,
  .progress_medium_b06d,
  .logo_clean_26c6,
  .photo-dcee,
  .accent_2f99,
  .modal-790c {
    grid-template-columns: 1fr;
  }
  
  .widget_lower_5512 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .content-6f88 {
    padding: var(--space-lg) 0;
  }
  
  .media-steel-1d72 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .media-steel-1d72 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accent_ad61 {
    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_lower_5512 {
    grid-template-columns: 1fr;
  }
  
  .light_70ba,
  .up-1f57,
  .cold-9509 {
    flex-direction: column;
    width: 100%;
  }
  
  .fast_b31a,
  .cool-b376,
  .light_70ba .accent_ad61,
  .up-1f57 .accent_ad61 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hero-cool-e619 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pagination_9f22 {
    font-size: 1.375rem;
  }
  
  .component-motion-672f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .shadow_gold_f12f,
  .list-3cb7,
  .smooth_e097,
  .panel-f8fc,
  .picture-large-948b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .wrapper-fresh-68b5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .last-d0c3 {
    gap: var(--space-xs);
  }
  
  .section_3047 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion_fresh_7cdb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .selected_2ec0 {
    width: 150px;
    height: 150px;
  }
  
  .basic-59cd {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fluid-edd6,
  .description-3849,
  .light_70ba,
  .plasma_ca66,
  .inner-7f54,
  .chip_bc5e,
  .tooltip-7124 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .content-6f88 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.panel_4fa3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 5b0b */
.ghost-box-l2 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.3;
}
