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

.outer-3d80:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.breadcrumb-inner-0945,
header,
.secondary-1535,
.fixed-da56,
.active-1eef,
.summary-smooth-776a,
.table-63a6,
.bronze_18e8,
.form-pressed-c8c4 {
  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
   ============================================ */
.breadcrumb-inner-0945 {
  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);
}

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

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

/* Scrolled state */
.breadcrumb-inner-0945.complex-376c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.action-9e29 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.black-1bc2 {
  flex: 1;
}

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

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

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

.box_dim_2a66.fn-active-ee78 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.small-1009 {
  position: relative;
}

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

.pink-70e4 svg {
  transition: transform 0.2s ease;
}

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

.hover-dirty-5f90 {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.row-476a {
  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;
}

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

.row-476a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.black-3b1c[aria-expanded="true"] .box-1584:nth-child(2) {
  opacity: 0;
}

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

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

  .black-1bc2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .black-1bc2.photo_0dcd {
    display: block;
    right: 0;
  }
  
  .pattern-selected-6dfa {
    flex-direction: column;
    gap: 0;
  }
  
  .box_dim_2a66 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .black-1bc2::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;
  }
  
  .black-1bc2.photo_0dcd::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .black-1bc2 {
    display: none;
  }
  
  .black-3b1c {
    display: flex;
  }
  
  .carousel-7e0a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .row-476a,
  .heading_hard_6762 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .small-1009 {
    position: relative;
  }
  
  .hover-dirty-5f90 {
    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;
  }
  
  .pink-70e4[aria-expanded="true"] + .hover-dirty-5f90 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .caption-bae1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .detail-591a {
    gap: 8px;
  }
  
  .row-476a {
    display: none;
  }
  
  .heading_hard_6762 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .action-9e29 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.tiny_f589 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.purple-3f46 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.carousel-steel-fffd {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.left-6f63 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .detail_1a19 {
    grid-template-columns: 1fr;
  }
  
  .media_53ba {
    font-size: 1.75rem;
  }
  
  .frame_stale_3ae6 {
    order: -1;
    max-width: 100%;
  }
  
  .left-6f63 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .media_53ba {
    font-size: 1.5rem;
  }
  
  .full_f793 {
    font-size: 1rem;
  }
  
  .title_68f3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .left-6f63 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.prev-0f96 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.header-hovered-8bdb {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-center-71be {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs_a833 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) {
  .pro-1e93 {
    grid-template-columns: 1fr;
  }
  
  .banner-center-71be {
    font-size: 1.75rem;
  }
  
  .info_eb50 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .banner-center-71be {
    font-size: 1.5rem;
  }
  
  .info_eb50 h3 {
    font-size: 1.375rem;
  }
  
  .info_eb50 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.mask_cf11 {
  flex-shrink: 0;
}

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

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

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

.stale-e46c,
.down-57bf,
.column_c28e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stale-e46c thead,
.down-57bf thead {
  background: var(--color-primary);
  color: white;
}

.stale-e46c th,
.stale-e46c td,
.down-57bf th,
.down-57bf td,
.column_c28e th,
.column_c28e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stale-e46c th,
  .stale-e46c td,
  .down-57bf th,
  .down-57bf td,
  .column_c28e th,
  .column_c28e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .stale-e46c,
  .down-57bf,
  .column_c28e {
    min-width: 600px;
  }
}

.stale-e46c th,
.down-57bf th,
.column_c28e th {
  font-weight: 600;
}

.stale-e46c tbody tr:hover,
.down-57bf tbody tr:hover,
.column_c28e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.wrapper-under-626a {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.notice-96a9 h4 {
  color: white;
}

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

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

.cold-1221:last-child {
  border-bottom: none;
}

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

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

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

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

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

.search-cool-5b2e {
  text-align: center;
  margin-bottom: var(--space-md);
}

.fluid-902f {
  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);
}

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

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

.pro-aa47 {
  list-style: none;
  padding: 0;
}

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

.pro-3618 {
  color: #4caf50;
}

.logo-blue-dfe0 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.aside-steel-78fa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.aside-steel-78fa p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_tall_8fbe .south-9fec {
  width: 100%;
  background: white;
}

.mask_bd55 .south-9fec {
  color: #667eea;
}

.upper_26c1 .south-9fec {
  color: #f5576c;
}

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

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

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

.tag-blue-700b {
  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);
}

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

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

@media (max-width: 768px) {
  .fluid_c294 {
    padding: var(--space-md);
  }
  
  .last_8c06 {
    padding: var(--space-md);
  }
  
  .fluid-a041 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.block-small-db12 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.icon-05c9,
.mini_6c8c,
.image_4f19,
.thumbnail-dirty-d134 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.hero-in-9016 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.video-bb28 .tag_action_dd2b {
  background: #e8f5e9;
  color: var(--color-success);
}

.menu_down_4f8b .tag_action_dd2b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.widget-west-5b55 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.hot-150e {
  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);
}

.filter-middle-9707 {
  text-align: center;
}

.content-old-173e {
  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);
}

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

.content-old-173e .cool_4fa3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.large-5cb9 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.feature-brown-dfd8 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.top-73cc {
  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;
}

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

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

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

.pink_9126 {
  text-align: right;
}

.pink_9126 .wood-cfbc {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.preview-rough-181d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.status-bronze-62f0 {
  background: #e8f5e9;
  color: #2e7d32;
}

.summary-0969 {
  background: #e3f2fd;
  color: #1565c0;
}

.nav-glass-58c9 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

.header-smooth-8bbd {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.icon-plasma-0eeb {
  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);
}

.icon-plasma-0eeb:hover {
  background: var(--color-bg-alt);
}

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

.icon-plasma-0eeb[aria-expanded="true"] .lower_edcb {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-tall-f414,
.inner-cb69 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.info-tall-f414 h4,
.inner-cb69 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.info-tall-f414 ul,
.inner-cb69 ul {
  list-style: none;
  padding: 0;
}

.info-tall-f414 li,
.inner-cb69 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.banner-prev-1ffd {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.highlight-mini-0cf3 {
  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);
}

.highlight-mini-0cf3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.highlight-mini-0cf3 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.backdrop_black_e49d a:hover {
  color: white;
}

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

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

.wide-7dd7 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.container-d47f a:hover {
  color: white;
}

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

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

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

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

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

.slider-static-be50 .carousel-steel-fffd {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.north-1875 a:hover {
  color: white;
}

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

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

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

.short_7399 a:hover {
  color: white;
}

.detail-rough-c08f {
  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);
}

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

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

.modal-5a01 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .detail-rough-c08f {
    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;
  }
  
  .media_53ba {
    font-size: 2rem;
  }
  
  .banner-center-71be {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .detail_1a19,
  .pro-1e93 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shadow_large_22e0,
  .warm_e8af,
  .header_f9b7,
  .gold_4738,
  .item-upper-d36e,
  .texture_first_d63d,
  .heading-5513,
  .bottom-d889,
  .carousel-a05a {
    grid-template-columns: 1fr;
  }
  
  .modal_9028 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .table-63a6 {
    padding: var(--space-lg) 0;
  }
  
  .solid_5d62 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .solid_5d62 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .south-9fec {
    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;
  }
  
  .modal_9028 {
    grid-template-columns: 1fr;
  }
  
  .status_9d30,
  .shade-171e,
  .carousel-under-48fb {
    flex-direction: column;
    width: 100%;
  }
  
  .prev-0f96,
  .header-hovered-8bdb,
  .status_9d30 .south-9fec,
  .shade-171e .south-9fec {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .media_53ba {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .banner-center-71be {
    font-size: 1.375rem;
  }
  
  .panel_f599 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .pink-949e,
  .aside-steel-78fa,
  .upper-4605,
  .tiny-eba7,
  .outline_old_8de6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .east_360f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .preview-next-0fc7 {
    gap: var(--space-xs);
  }
  
  .tiny_f589 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .fluid-902f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .content-old-173e {
    width: 150px;
    height: 150px;
  }
  
  .dropdown-93f3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .breadcrumb-inner-0945,
  .secondary-1535,
  .status_9d30,
  .nav_4843,
  .bronze_18e8,
  .form-pressed-c8c4,
  .black-3b1c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .table-63a6 {
    page-break-inside: avoid;
  }
}

/* css-noise: c683 */
.widget-item-f6 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
