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

.active_3b4d:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.hot_1697,
header,
.message_plasma_07a6,
.dim-22ba,
.dim_ec31,
.frame-d437,
.lower-e569,
.disabled-hard-af44,
.element_outer_ee78 {
  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
   ============================================ */
.hot_1697 {
  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);
}

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

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

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

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

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

.info-top-6961 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.component_silver_564c {
  flex: 1;
}

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

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

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

.media_6154.fn-active-d705 {
  background: var(--color-primary);
  color: white;
}

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

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

.carousel-out-70ba svg {
  transition: transform 0.2s ease;
}

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

.card-upper-dc21 {
  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;
}

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

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

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

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

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

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

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

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

.overlay-bottom-a049 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .component_silver_564c {
    display: none;
  }
  
  .highlight_hot_a023 {
    display: flex;
  }
  
  .outline_3eec {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .overlay-bottom-a049,
  .chip_stone_b425 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .message_2e67 {
    position: relative;
  }
  
  .card-upper-dc21 {
    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;
  }
  
  .carousel-out-70ba[aria-expanded="true"] + .card-upper-dc21 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .backdrop-4d76 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hard_7b00 {
    gap: 8px;
  }
  
  .overlay-bottom-a049 {
    display: none;
  }
  
  .chip_stone_b425 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .info-top-6961 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.status_simple_23d9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.outer-ecbf a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.banner-in-2d05 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .row_5b92 {
    grid-template-columns: 1fr;
  }
  
  .gallery_7cff {
    font-size: 1.75rem;
  }
  
  .accordion_5d9a {
    order: -1;
    max-width: 100%;
  }
  
  .frame_bd57 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .gallery_7cff {
    font-size: 1.5rem;
  }
  
  .header-simple-9385 {
    font-size: 1rem;
  }
  
  .outer-ecbf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .frame_bd57 {
    max-width: 250px;
  }
}

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

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

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

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

.icon-24e4:hover {
  background: var(--color-primary);
  color: white;
}

.list-upper-3dd1 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.list-upper-3dd1:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.block-tiny-28cd {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.outer-9fe5 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.outer-9fe5 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);
}

.outer-9fe5 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;
}

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

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

.active-61e3 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thick_3c10 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) {
  .box_6dbc {
    grid-template-columns: 1fr;
  }
  
  .white_863c {
    font-size: 1.75rem;
  }
  
  .link_a7f6 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.dim_525d {
  flex-shrink: 0;
}

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

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

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

.component-7e89,
.clean-5a74,
.hero-wood-24be {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.component-7e89 thead,
.clean-5a74 thead {
  background: var(--color-primary);
  color: white;
}

.component-7e89 th,
.component-7e89 td,
.clean-5a74 th,
.clean-5a74 td,
.hero-wood-24be th,
.hero-wood-24be td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .component-7e89 th,
  .component-7e89 td,
  .clean-5a74 th,
  .clean-5a74 td,
  .hero-wood-24be th,
  .hero-wood-24be td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .component-7e89,
  .clean-5a74,
  .hero-wood-24be {
    min-width: 600px;
  }
}

.component-7e89 th,
.clean-5a74 th,
.hero-wood-24be th {
  font-weight: 600;
}

.component-7e89 tbody tr:hover,
.clean-5a74 tbody tr:hover,
.hero-wood-24be tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.east_d801 h4 {
  color: white;
}

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

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

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

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

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

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

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

.cool-95c2:hover {
  text-decoration: underline;
}

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

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

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

.in-8f91 {
  font-weight: 600;
  color: white;
}

.secondary-top-b7d6 {
  list-style: none;
  padding: 0;
}

.secondary-top-b7d6 li {
  padding: var(--space-xs) 0;
}

.message-hovered-f5d1 {
  color: #4caf50;
}

.dropdown_381d {
  color: #ff9800;
}

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

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

.tag-last-9d8a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

.panel-motion-49d0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.panel-motion-49d0 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

.pattern-gold-0fbd h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over-1198 .media_aaed {
  width: 100%;
  background: white;
}

.popup_advanced_cc2b .media_aaed {
  color: #667eea;
}

.light_f423 .media_aaed {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.content-down-286b {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.logo-17fc {
  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);
}

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

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

@media (max-width: 768px) {
  .input_d232 {
    padding: var(--space-md);
  }
  
  .banner_north_d5bd {
    padding: var(--space-md);
  }
  
  .popup-3745 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.light-8bbd,
.slider-c5f1,
.row_under_e3bf,
.dirty-507d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.red-25c2 {
  border-color: var(--color-warning);
}

.link-85fd {
  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);
}

.heading-9202 .link-85fd {
  background: #e8f5e9;
  color: var(--color-success);
}

.red-25c2 .link-85fd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element_dynamic_0b35 {
  text-align: center;
}

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

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

.copper_473a .in-8f91 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption-action-81ce {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.purple-095a {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.aside-action-fbe3 {
  text-align: right;
}

.aside-action-fbe3 .title-black-817f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.chip_4bbf {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.preview-purple-27cb span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.grid-lite-e57e strong {
  color: var(--color-primary);
}

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

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

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

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

.wood-34cf {
  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);
}

.wood-34cf:hover {
  background: var(--color-bg-alt);
}

.card-narrow-2eda {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.wood-34cf[aria-expanded="true"] .card-narrow-2eda {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pressed-28cf,
.bright-b692 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pressed-28cf h4,
.bright-b692 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pressed-28cf ul,
.bright-b692 ul {
  list-style: none;
  padding: 0;
}

.pressed-28cf li,
.bright-b692 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.label-new-8117 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.selected-ecfc {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.main-first-b7d7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.border-b878 a:hover {
  color: white;
}

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

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

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

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

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

.bright_d442 a:hover {
  color: white;
}

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

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

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

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

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

.aside_4617 .banner-in-2d05 {
  color: #4caf50;
  font-size: 0.875rem;
}

.heading-1d03 {
  list-style: none;
  padding: 0;
}

.heading-1d03 li {
  margin-bottom: var(--space-xs);
}

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

.heading-1d03 a:hover {
  color: white;
}

.heading-8cf6 {
  list-style: none;
  padding: 0;
}

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

.heading-8cf6 a {
  color: #b0b0b0;
  text-decoration: none;
}

.heading-8cf6 a:hover {
  color: white;
}

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

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

.aside-first-d008 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.shade-a231 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;
}

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

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

@media (max-width: 768px) {
  .warm_119a {
    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;
  }
  
  .gallery_7cff {
    font-size: 2rem;
  }
  
  .white_863c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .row_5b92,
  .box_6dbc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .panel_tall_b7cc,
  .nav-e04a,
  .up_1fc9,
  .paper_6a01,
  .outer_018b,
  .table_bottom_1bac,
  .gold_b138,
  .caption_copper_1f33,
  .narrow_7db0 {
    grid-template-columns: 1fr;
  }
  
  .silver-c588 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .lower-e569 {
    padding: var(--space-lg) 0;
  }
  
  .outer-9fe5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .outer-9fe5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .media_aaed {
    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;
  }
  
  .silver-c588 {
    grid-template-columns: 1fr;
  }
  
  .slider-9208,
  .carousel_4772,
  .wrapper-action-e13a {
    flex-direction: column;
    width: 100%;
  }
  
  .plasma-ac39,
  .clean-aa39,
  .slider-9208 .media_aaed,
  .carousel_4772 .media_aaed {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .gallery_7cff {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .white_863c {
    font-size: 1.375rem;
  }
  
  .rough-3e82 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .aside-solid-ab18,
  .panel-motion-49d0,
  .secondary_f553,
  .row_old_a58f,
  .frame-d437 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tag-45e9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .preview_2972 {
    gap: var(--space-xs);
  }
  
  .status_simple_23d9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .logo_59a2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .copper_473a {
    width: 150px;
    height: 150px;
  }
  
  .glass_0263 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hot_1697,
  .message_plasma_07a6,
  .slider-9208,
  .module_5f2c,
  .disabled-hard-af44,
  .element_outer_ee78,
  .highlight_hot_a023 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .lower-e569 {
    page-break-inside: avoid;
  }
}

/* css-noise: 9539 */
.ghost-box-s2 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
