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

.simple_06aa:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.banner_out_0aa9,
header,
.last_7770,
.backdrop-current-cfd6,
.nav_8ff8,
.accordion-757f,
.hidden-3f5f,
.outer_c1a3,
.image-1104 {
  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
   ============================================ */
.banner_out_0aa9 {
  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);
}

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

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

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

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

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

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

.hero-full-d3c5 {
  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;
}

.pink_1a91 {
  flex: 1;
}

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

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

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

.left-9916.fn-active-1ff7 {
  background: var(--color-primary);
  color: white;
}

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

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

.warm-acc2 svg {
  transition: transform 0.2s ease;
}

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

.fixed-9fce {
  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;
}

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

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

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

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

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

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

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

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

.soft-39f1 svg {
  flex-shrink: 0;
}

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

.feature-6fda: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);
}

.feature-6fda svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.top-8fdc[aria-expanded="true"] .status_purple_bdae:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .pink_1a91 {
    display: none;
  }
  
  .top-8fdc {
    display: flex;
  }
  
  .hero-full-d3c5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .soft-39f1,
  .feature-6fda {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .iron_6d81 {
    position: relative;
  }
  
  .fixed-9fce {
    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-acc2[aria-expanded="true"] + .fixed-9fce {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .wood-80b6 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .purple_09c1 {
    gap: 8px;
  }
  
  .soft-39f1 {
    display: none;
  }
  
  .feature-6fda {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dropdown_dirty_b9eb img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.text_eb38 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.first-bd2a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.red-da84 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .picture-5db8 {
    grid-template-columns: 1fr;
  }
  
  .prev-6133 {
    font-size: 1.75rem;
  }
  
  .notification_a7fd {
    order: -1;
    max-width: 100%;
  }
  
  .red-da84 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .prev-6133 {
    font-size: 1.5rem;
  }
  
  .narrow-b8d5 {
    font-size: 1rem;
  }
  
  .first-bd2a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .red-da84 {
    max-width: 250px;
  }
}

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

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

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

.outline-first-54d7 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.outline-first-54d7:hover {
  background: var(--color-primary);
  color: white;
}

.card-blue-2ade {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.card-blue-2ade:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

.detail-simple-4f66 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.advanced-33ea {
  list-style: none;
  counter-reset: toc-counter;
}

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

.advanced-33ea 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);
}

.advanced-33ea 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.hidden-3f5f {
  padding: var(--space-xxl) 0;
}

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

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

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

.center-866e {
  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);
}

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

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

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

.wrapper-gas-4e7f {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.wrapper-gas-4e7f img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper-gas-4e7f pre,
.wrapper-gas-4e7f code {
  overflow-x: auto;
  max-width: 100%;
}

.wrapper-gas-4e7f 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);
}

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

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

.wrapper-gas-4e7f p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.wrapper-gas-4e7f ul,
.wrapper-gas-4e7f ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.wrapper-gas-4e7f li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.wrapper-gas-4e7f strong {
  font-weight: 600;
  color: var(--color-text);
}

.wrapper-gas-4e7f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.wrapper-gas-4e7f a:hover {
  color: var(--color-primary-dark);
}

.surface-pro-c762 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.surface-pro-c762 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) {
  .over-3cde {
    grid-template-columns: 1fr;
  }
  
  .center-866e {
    font-size: 1.75rem;
  }
  
  .wrapper-gas-4e7f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .center-866e {
    font-size: 1.5rem;
  }
  
  .wrapper-gas-4e7f h3 {
    font-size: 1.375rem;
  }
  
  .wrapper-gas-4e7f h4 {
    font-size: 1.125rem;
  }
}

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

.tertiary-65f1 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.thick-8be6 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.dim-4528 {
  flex-shrink: 0;
}

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

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

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

.notification-8d12,
.heading_eabd,
.block-76cb {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notification-8d12 thead,
.heading_eabd thead {
  background: var(--color-primary);
  color: white;
}

.notification-8d12 th,
.notification-8d12 td,
.heading_eabd th,
.heading_eabd td,
.block-76cb th,
.block-76cb td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notification-8d12 th,
  .notification-8d12 td,
  .heading_eabd th,
  .heading_eabd td,
  .block-76cb th,
  .block-76cb td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notification-8d12,
  .heading_eabd,
  .block-76cb {
    min-width: 600px;
  }
}

.notification-8d12 th,
.heading_eabd th,
.block-76cb th {
  font-weight: 600;
}

.notification-8d12 tbody tr:hover,
.heading_eabd tbody tr:hover,
.block-76cb tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.feature-fixed-dba1 h4 {
  color: white;
}

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

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

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

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

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

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

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

.green-4e87:hover {
  text-decoration: underline;
}

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

.sort-soft-94fa {
  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);
}

.sort-soft-94fa span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.item-focused-a29a {
  font-weight: 600;
  color: white;
}

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

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

.hidden_4fd5 {
  color: #4caf50;
}

.layout_d7ab {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.background-2f43 {
  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;
}

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

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

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

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

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

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

.status-steel-5db6 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.dropdown-gas-e0e4 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.input_tiny_5002 .carousel_6ab6 {
  width: 100%;
  background: white;
}

.fixed-5c6f .carousel_6ab6 {
  color: #667eea;
}

.tabs-dc8f .carousel_6ab6 {
  color: #f5576c;
}

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

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

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

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

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

.highlight-hot-80fc {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .link_c834 {
    padding: var(--space-md);
  }
  
  .highlight-hot-80fc {
    padding: var(--space-md);
  }
  
  .south_c635 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.form_clean_9d4c,
.cool_af79,
.red-6a31,
.tertiary_3ec2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-0cf1 {
  border-color: var(--color-success);
}

.title-1df1 {
  border-color: var(--color-warning);
}

.search-28f5 {
  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);
}

.avatar-0cf1 .search-28f5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.title-1df1 .search-28f5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-west-961a {
  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);
}

.tooltip_b755 {
  text-align: center;
}

.simple-a201 {
  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-e68e {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.simple-a201 .item-focused-a29a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .disabled-west-961a {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.notice-59a1 {
  color: var(--color-text-light);
}

.feature-fixed-4aad {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

.frame-hard-463e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.gradient-plasma-76a2 {
  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;
}

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

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

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

.solid_c478 {
  text-align: right;
}

.solid_c478 .modal-hot-9cba {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.main-wood-0b74 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.component-active-cf2e {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-south-5df7 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.carousel_9622[aria-expanded="true"] .box-south-5df7 {
  transform: rotate(180deg);
}

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

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

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

.tabs-iron-ff43 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.frame-yellow-578b,
.alert-narrow-633a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.frame-yellow-578b h4,
.alert-narrow-633a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.frame-yellow-578b ul,
.alert-narrow-633a ul {
  list-style: none;
  padding: 0;
}

.frame-yellow-578b li,
.alert-narrow-633a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.summary-complex-4a58 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.summary-complex-4a58 ul {
  list-style: none;
  padding: 0;
}

.summary-complex-4a58 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.mask_853c {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight_stale_be81 a:hover {
  color: white;
}

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

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

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

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

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

.gold_802d a:hover {
  color: white;
}

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

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

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

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

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

.button_cb25 .paper-a626 {
  color: #4caf50;
  font-size: 0.875rem;
}

.aside-ccdd {
  list-style: none;
  padding: 0;
}

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

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

.aside-ccdd a:hover {
  color: white;
}

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

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

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

.north_5c98 a:hover {
  color: white;
}

.hidden-south-1471 {
  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);
}

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

.detail-soft-0770 a {
  color: #4caf50;
  text-decoration: none;
}

.grid-soft-c664 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

.list-glass-98c5 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.list-glass-98c5:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hidden-south-1471 {
    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;
  }
  
  .prev-6133 {
    font-size: 2rem;
  }
  
  .center-866e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .picture-5db8,
  .over-3cde {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sidebar-28ea,
  .banner-1182,
  .last-4299,
  .pagination_short_5e00,
  .tertiary_4d2f,
  .hidden_under_435b,
  .active_b23b,
  .pro_26e2,
  .wood_58c7 {
    grid-template-columns: 1fr;
  }
  
  .background-new-43a4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hidden-3f5f {
    padding: var(--space-lg) 0;
  }
  
  .advanced-33ea li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .advanced-33ea li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel_6ab6 {
    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;
  }
  
  .background-new-43a4 {
    grid-template-columns: 1fr;
  }
  
  .iron_9334,
  .advanced-1335,
  .easy-ea2e {
    flex-direction: column;
    width: 100%;
  }
  
  .module_paper_52e4,
  .detail-simple-4f66,
  .iron_9334 .carousel_6ab6,
  .advanced-1335 .carousel_6ab6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .prev-6133 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .center-866e {
    font-size: 1.375rem;
  }
  
  .tag_d9e0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sort_lite_57cd,
  .slider_91e3,
  .photo_cce7,
  .table-2a0f,
  .in-5eb3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .nav_right_2470 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .small-3e69 {
    gap: var(--space-xs);
  }
  
  .text_eb38 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .sort-soft-94fa {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .simple-a201 {
    width: 150px;
    height: 150px;
  }
  
  .dropdown-e68e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .banner_out_0aa9,
  .last_7770,
  .iron_9334,
  .old_78de,
  .outer_c1a3,
  .image-1104,
  .top-8fdc {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hidden-3f5f {
    page-break-inside: avoid;
  }
}

/* css-noise: a85e */
.phantom-card-k7 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
