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

.preview_over_dcee:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.hidden-a6a1):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. */
.hidden-a6a1,
header,
.summary-2ba0,
.border-b13e,
.column_steel_2441,
.element_east_fceb,
.card-stone-aecf,
.fluid_3936,
.tabs-hard-8206 {
  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
   ============================================ */
.hidden-a6a1 {
  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);
}

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

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

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

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

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

.layout-1bc2 img {
  height: 36px;
  width: auto;
  display: block;
}

.center-8a06 {
  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;
}

.shadow-48b2 {
  flex: 1;
}

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

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

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

.brown_6b60.hidden-c506 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.gallery-cool-555a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.caption-b90c svg {
  flex-shrink: 0;
}

/* Header Download Button */
.border-thick-06b1 {
  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;
}

.border-thick-06b1: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);
}

.border-thick-06b1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .shadow-48b2 {
    display: none;
  }
  
  .notification_fluid_10b5 {
    display: flex;
  }
  
  .center-8a06 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .caption-b90c,
  .border-thick-06b1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tiny_c907 {
    position: relative;
  }
  
  .notice_62bb {
    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;
  }
  
  .wide_7a57[aria-expanded="true"] + .notice_62bb {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .overlay_914c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery-cool-555a {
    gap: 8px;
  }
  
  .caption-b90c {
    display: none;
  }
  
  .border-thick-06b1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .layout-1bc2 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .border-thick-06b1 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .border-thick-06b1 svg {
    width: 14px;
    height: 14px;
  }
  
  .slow-d9b7 {
    gap: var(--space-sm);
  }
}

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

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

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

.fluid_36af svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-57c5 {
  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;
}

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

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

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

.silver-29b6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tag-5bb7 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.frame-iron-6ee5 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

.filter-right-1d22 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.description-cold-7e4f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .image_109c {
    grid-template-columns: 1fr;
  }
  
  .header-711f {
    font-size: 1.75rem;
  }
  
  .tag-5bb7 {
    order: -1;
    max-width: 100%;
  }
  
  .frame_8022 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .header-711f {
    font-size: 1.5rem;
  }
  
  .brown-7f70 {
    font-size: 1rem;
  }
  
  .white_7141 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .frame_8022 {
    max-width: 250px;
  }
}

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

.thumbnail-advanced-4d95 {
  background: var(--color-primary);
  color: white;
}

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

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

.link-914d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-in-a3a4 {
  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);
}

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

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

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

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

.wood-706a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.wood-706a 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);
}

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

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

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

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

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

.wood-706a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

.iron-a35b 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) {
  .shadow_pro_a632 {
    grid-template-columns: 1fr;
  }
  
  .text-in-a3a4 {
    font-size: 1.75rem;
  }
  
  .wood-706a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .text-in-a3a4 {
    font-size: 1.5rem;
  }
  
  .wood-706a h3 {
    font-size: 1.375rem;
  }
  
  .wood-706a h4 {
    font-size: 1.125rem;
  }
}

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

.overlay-fresh-2cf7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.bottom_c378 {
  flex-shrink: 0;
}

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

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

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

.info-ebdb,
.card-ec3d,
.nav-414a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-ebdb thead,
.card-ec3d thead {
  background: var(--color-primary);
  color: white;
}

.info-ebdb th,
.info-ebdb td,
.card-ec3d th,
.card-ec3d td,
.nav-414a th,
.nav-414a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .info-ebdb th,
  .info-ebdb td,
  .card-ec3d th,
  .card-ec3d td,
  .nav-414a th,
  .nav-414a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .info-ebdb,
  .card-ec3d,
  .nav-414a {
    min-width: 600px;
  }
}

.info-ebdb th,
.card-ec3d th,
.nav-414a th {
  font-weight: 600;
}

.info-ebdb tbody tr:hover,
.card-ec3d tbody tr:hover,
.nav-414a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.smooth_9799 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.notice-348f {
  font-weight: 600;
  color: white;
}

.medium-dd83 {
  list-style: none;
  padding: 0;
}

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

.status_ff3d {
  color: #4caf50;
}

.lite-1c6e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink-cc3c .mini-795c {
  width: 100%;
  background: white;
}

.gallery_glass_fe65 .mini-795c {
  color: #667eea;
}

.box-action-e73a .mini-795c {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .black-b960 {
    padding: var(--space-md);
  }
  
  .icon_current_9483 {
    padding: var(--space-md);
  }
  
  .info-black-88ec {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.info-black-88ec {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.active_0815,
.bottom-8289,
.plasma_c69e,
.mini-e9f2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.advanced-844f {
  border-color: var(--color-success);
}

.south-75f8 {
  border-color: var(--color-warning);
}

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

.advanced-844f .pagination_7a8e {
  background: #e8f5e9;
  color: var(--color-success);
}

.south-75f8 .pagination_7a8e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.paragraph-99c0 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.rough-79f2 {
  margin-top: var(--space-xxl);
}

.first-45cc {
  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);
}

.box_6fa1 {
  text-align: center;
}

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

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

.footer_634c .notice-348f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.image-light-954a {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.slow-47f2 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.clean-905b {
  text-align: right;
}

.clean-905b .wrapper-easy-01b4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.border-9d47 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

.badge-center-3e27 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-action-0305 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask_static_a8b1 ul,
.advanced_3e93 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-9d6a {
  font-style: italic;
}

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

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

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

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

.alert-focused-9e2c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.badge-down-2eb8 {
  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);
}

.badge-down-2eb8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.badge-down-2eb8 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.solid_ff04 .mask-b6f8 {
  color: #4caf50;
  font-size: 0.875rem;
}

.input-4e86 {
  list-style: none;
  padding: 0;
}

.input-4e86 li {
  margin-bottom: var(--space-xs);
}

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

.input-4e86 a:hover {
  color: white;
}

.item-1ad7 {
  list-style: none;
  padding: 0;
}

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

.item-1ad7 a {
  color: #b0b0b0;
  text-decoration: none;
}

.item-1ad7 a:hover {
  color: white;
}

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

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

.heading-8e9e a {
  color: #4caf50;
  text-decoration: none;
}

.primary-clean-b6aa {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .hero-4695 {
    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;
  }
  
  .header-711f {
    font-size: 2rem;
  }
  
  .text-in-a3a4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .image_109c,
  .shadow_pro_a632 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .component_23b6,
  .description_fluid_54fa,
  .heading_top_d7bd,
  .component-6196,
  .tooltip_old_d42d,
  .sort_3c9e,
  .background_over_0980,
  .wrapper_hovered_9a11 {
    grid-template-columns: 1fr;
  }
  
  .section-1e32 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .card-stone-aecf {
    padding: var(--space-lg) 0;
  }
  
  .main_04f6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .main_04f6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .mini-795c {
    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;
  }
  
  .section-1e32 {
    grid-template-columns: 1fr;
  }
  
  .silver-29b6,
  .alert-focused-9e2c,
  .main_2b10 {
    flex-direction: column;
    width: 100%;
  }
  
  .glass_4a88,
  .picture_3ecf,
  .silver-29b6 .mini-795c,
  .alert-focused-9e2c .mini-795c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .header-711f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .text-in-a3a4 {
    font-size: 1.375rem;
  }
  
  .solid-23a2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .stale_6f53,
  .backdrop-static-fc67,
  .heading-fluid-c9ea,
  .button_yellow_1f98,
  .caption_04db {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hero_4ce0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .block-green-8f53 {
    gap: var(--space-xs);
  }
  
  .fluid_36af {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .shadow_df5e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer_634c {
    width: 150px;
    height: 150px;
  }
  
  .purple-ea66 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hidden-a6a1,
  .summary-2ba0,
  .silver-29b6,
  .surface_solid_9505,
  .fluid_3936,
  .tabs-hard-8206,
  .notification_fluid_10b5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .card-stone-aecf {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 21db */
.promo-block-m1 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
