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

.pressed_10d0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.heading_east_b61d,
header,
.pattern-silver-f52c,
.hidden-a31e,
.header-aa32,
.filter-3754,
.hero-copper-5626,
.box-orange-7db8,
.thumbnail-ca7e {
  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
   ============================================ */
.heading_east_b61d {
  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);
}

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

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

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

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

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

.content-17d6 img {
  height: 36px;
  width: auto;
  display: block;
}

.orange-3ef3 {
  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;
}

.focus-17ea {
  flex: 1;
}

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

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

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

.button_97ad.fn-active-be12 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow_c5b3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

.detail-dirty-057f {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.selected_68c5[aria-expanded="true"] .detail-dirty-057f:nth-child(2) {
  opacity: 0;
}

.selected_68c5[aria-expanded="true"] .detail-dirty-057f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .focus-17ea {
    display: none;
  }
  
  .selected_68c5 {
    display: flex;
  }
  
  .orange-3ef3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .shadow_c5b3,
  .gallery_7393 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .action_c950 {
    position: relative;
  }
  
  .tertiary_top_8625 {
    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;
  }
  
  .warm_0e12[aria-expanded="true"] + .tertiary_top_8625 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .overlay_1977 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tall-b200 {
    gap: 8px;
  }
  
  .shadow_c5b3 {
    display: none;
  }
  
  .gallery_7393 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .content-17d6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.brown-fa77 svg {
  flex-shrink: 0;
}

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

.brown-fa77 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-green-4c99 {
  display: flex;
  gap: var(--space-sm);
}

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

.component-9e95 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.component-9e95 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.detail-41fb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .narrow_67a6 {
    grid-template-columns: 1fr;
  }
  
  .dark-f82c {
    font-size: 1.75rem;
  }
  
  .west-bb47 {
    order: -1;
    max-width: 100%;
  }
  
  .modal_complex_ec29 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dark-f82c {
    font-size: 1.5rem;
  }
  
  .table_f0bf {
    font-size: 1rem;
  }
  
  .message_8f1e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .modal_complex_ec29 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.link-basic-ff37 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.article-over-002d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.shade-north-0dfb {
  list-style: none;
  counter-reset: toc-counter;
}

.shade-north-0dfb li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.shade-north-0dfb 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);
}

.shade-north-0dfb 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;
}

.shade-north-0dfb li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.form-active-be5e {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-efdb 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) {
  .backdrop-4a82 {
    grid-template-columns: 1fr;
  }
  
  .smooth_9f1f {
    font-size: 1.75rem;
  }
  
  .gold_7a52 {
    max-width: 100%;
  }
}

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

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

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

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

.background-fluid-4114 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.logo-under-0fc4 {
  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;
}

.secondary-9027 {
  flex-shrink: 0;
}

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

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

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

.surface_plasma_b239,
.box_dynamic_e3d6,
.pagination-dcec {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.surface_plasma_b239 thead,
.box_dynamic_e3d6 thead {
  background: var(--color-primary);
  color: white;
}

.surface_plasma_b239 th,
.surface_plasma_b239 td,
.box_dynamic_e3d6 th,
.box_dynamic_e3d6 td,
.pagination-dcec th,
.pagination-dcec td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .surface_plasma_b239 th,
  .surface_plasma_b239 td,
  .box_dynamic_e3d6 th,
  .box_dynamic_e3d6 td,
  .pagination-dcec th,
  .pagination-dcec td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .surface_plasma_b239,
  .box_dynamic_e3d6,
  .pagination-dcec {
    min-width: 600px;
  }
}

.surface_plasma_b239 th,
.box_dynamic_e3d6 th,
.pagination-dcec th {
  font-weight: 600;
}

.surface_plasma_b239 tbody tr:hover,
.box_dynamic_e3d6 tbody tr:hover,
.pagination-dcec tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.highlight_fd45 h4 {
  color: white;
}

.gallery-plasma-19bc {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.filter-64d2:last-child {
  border-bottom: none;
}

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

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

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

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

.button-1536:hover {
  text-decoration: underline;
}

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

.accordion_last_9c0b {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

.stale-78be {
  font-weight: 600;
  color: white;
}

.link-3181 {
  list-style: none;
  padding: 0;
}

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

.progress-new-1354 {
  color: #4caf50;
}

.complex-9cf4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero-solid-3dfe {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main_c2a6 .secondary-prev-b3f6 {
  width: 100%;
  background: white;
}

.smooth_0f77 .secondary-prev-b3f6 {
  color: #667eea;
}

.block-huge-c4a8 .secondary-prev-b3f6 {
  color: #f5576c;
}

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

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

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

.tabs-6e85 {
  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);
}

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

.sort-brown-1799 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .accordion_1805 {
    padding: var(--space-md);
  }
  
  .sort-brown-1799 {
    padding: var(--space-md);
  }
  
  .hover_hard_30ba {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.texture_313b,
.stale-9d7e,
.medium_6e8e,
.info_brown_8899 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-under-2352 {
  border-color: var(--color-warning);
}

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

.dim_0da7 .easy_620f {
  background: #e8f5e9;
  color: var(--color-success);
}

.modal-under-2352 .easy_620f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .popup-right-62f7 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.dropdown_slow_31e4 {
  text-align: center;
}

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

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

.background_thick_2f64 .stale-78be {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.block-top-30bc p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.media-center-18c2 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-gold-acfd {
  text-align: right;
}

.shade-gold-acfd .new-8e97 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.pagination-7a71 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.search-e7a4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-ad61,
.badge_basic_92e5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.layout-ad61 h4,
.badge_basic_92e5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.layout-ad61 ul,
.badge_basic_92e5 ul {
  list-style: none;
  padding: 0;
}

.layout-ad61 li,
.badge_basic_92e5 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.notice_lower_929b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-db84 .label-green-4c99 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.next_7009 a:hover {
  color: white;
}

.label-static-6762 {
  list-style: none;
  padding: 0;
}

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

.label-static-6762 a {
  color: #b0b0b0;
  text-decoration: none;
}

.label-static-6762 a:hover {
  color: white;
}

.media-0c35 {
  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);
}

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

.stone-5cde a {
  color: #4caf50;
  text-decoration: none;
}

.down-27d6 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .media-0c35 {
    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;
  }
  
  .dark-f82c {
    font-size: 2rem;
  }
  
  .smooth_9f1f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .narrow_67a6,
  .backdrop-4a82 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hero-solid-3dfe,
  .popup-c9f1,
  .rough_73de,
  .popup-right-62f7,
  .wood_8841,
  .border-hovered-fc41,
  .video_9ff0,
  .orange_f6f5 {
    grid-template-columns: 1fr;
  }
  
  .white-98c6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero-copper-5626 {
    padding: var(--space-lg) 0;
  }
  
  .shade-north-0dfb li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shade-north-0dfb li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .secondary-prev-b3f6 {
    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;
  }
  
  .white-98c6 {
    grid-template-columns: 1fr;
  }
  
  .detail-41fb,
  .paper-fab8,
  .label-faf8 {
    flex-direction: column;
    width: 100%;
  }
  
  .hidden_focused_4d56,
  .link-basic-ff37,
  .detail-41fb .secondary-prev-b3f6,
  .paper-fab8 .secondary-prev-b3f6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dark-f82c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .smooth_9f1f {
    font-size: 1.375rem;
  }
  
  .hard-e379 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .narrow_acde,
  .hero-ec93,
  .widget_north_ab2e,
  .tooltip-7a1e,
  .badge_68f4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .active-ca31 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tertiary-ea7b {
    gap: var(--space-xs);
  }
  
  .brown-fa77 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion_last_9c0b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .background_thick_2f64 {
    width: 150px;
    height: 150px;
  }
  
  .logo_7ab0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .heading_east_b61d,
  .pattern-silver-f52c,
  .detail-41fb,
  .notification_down_dc03,
  .box-orange-7db8,
  .thumbnail-ca7e,
  .selected_68c5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-copper-5626 {
    page-break-inside: avoid;
  }
}

/* css-noise: 5bb2 */
.widget-item-g3 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.0;
}
