/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.outer_8684 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.outer_8684:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.active-f40a,
header,
.accordion_ed7d,
.overlay_medium_27de,
.grid-lite-4e7b,
.photo-9f36,
.under-7263,
.dropdown-active-f3b9,
.plasma_7989 {
  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
   ============================================ */
.active-f40a {
  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);
}

.main-red-77c8 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.iron-03ca {
  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;
}

.icon_9455 {
  flex: 1;
}

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

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

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

.dim_4816.fn-active-c01a {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.container-bright-5b29 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_huge_f837 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .icon_9455::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .icon_9455.next-528c {
    display: block;
    right: 0;
  }
  
  .secondary-hot-865f {
    flex-direction: column;
    gap: 0;
  }
  
  .dim_4816 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .icon_9455::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;
  }
  
  .icon_9455.next-528c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .icon_9455 {
    display: none;
  }
  
  .shade_1f1b {
    display: flex;
  }
  
  .iron-03ca {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .carousel_huge_f837,
  .description_366e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .container-bright-5b29 {
    position: relative;
  }
  
  .orange_0bb7 {
    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;
  }
  
  .media_hard_ed5a[aria-expanded="true"] + .orange_0bb7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .old_e5bc {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .header_bbc5 {
    gap: 8px;
  }
  
  .carousel_huge_f837 {
    display: none;
  }
  
  .description_366e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .button_plasma_b880 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.gallery-red-d010 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-red-d010 svg {
  flex-shrink: 0;
}

.gallery-red-d010 a {
  color: var(--color-primary);
  text-decoration: none;
}

.gallery-red-d010 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.component-d275 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.link-d3b0 {
  display: flex;
  gap: var(--space-sm);
}

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

.tertiary-hot-fcf4 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tertiary-hot-fcf4 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .notice-f0f9 {
    grid-template-columns: 1fr;
  }
  
  .heading_orange_4aba {
    font-size: 1.75rem;
  }
  
  .link_ddbe {
    order: -1;
    max-width: 100%;
  }
  
  .bright_1484 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .heading_orange_4aba {
    font-size: 1.5rem;
  }
  
  .wood_4fa2 {
    font-size: 1rem;
  }
  
  .component-d275 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .bright_1484 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.card-8a8f {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.row-pink-585c {
  background: var(--color-primary);
  color: white;
}

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

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

.dynamic-29c8:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-f3b1 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rough-c422 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) {
  .accent-903a {
    grid-template-columns: 1fr;
  }
  
  .blue-3289 {
    font-size: 1.75rem;
  }
  
  .secondary-e31d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .blue-3289 {
    font-size: 1.5rem;
  }
  
  .secondary-e31d h3 {
    font-size: 1.375rem;
  }
  
  .secondary-e31d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.column-right-4033 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.border-old-c1c3 {
  flex-shrink: 0;
}

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

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

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

.panel-smooth-7e03,
.glass_04be,
.tertiary_bright_4bf6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.panel-smooth-7e03 thead,
.glass_04be thead {
  background: var(--color-primary);
  color: white;
}

.panel-smooth-7e03 th,
.panel-smooth-7e03 td,
.glass_04be th,
.glass_04be td,
.tertiary_bright_4bf6 th,
.tertiary_bright_4bf6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .panel-smooth-7e03 th,
  .panel-smooth-7e03 td,
  .glass_04be th,
  .glass_04be td,
  .tertiary_bright_4bf6 th,
  .tertiary_bright_4bf6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .panel-smooth-7e03,
  .glass_04be,
  .tertiary_bright_4bf6 {
    min-width: 600px;
  }
}

.panel-smooth-7e03 th,
.glass_04be th,
.tertiary_bright_4bf6 th {
  font-weight: 600;
}

.panel-smooth-7e03 tbody tr:hover,
.glass_04be tbody tr:hover,
.tertiary_bright_4bf6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.first_3c81 h4 {
  color: white;
}

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

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

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

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

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

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

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

.input-12a2:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hidden_hovered_d113 {
  color: #4caf50;
}

.large_776b {
  color: #ff9800;
}

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

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

.progress-cool-0dcb {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

@media (max-width: 768px) {
  .image-hard-4a65 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-559e .card-8a8f {
  width: 100%;
  background: white;
}

.banner_efaa .card-8a8f {
  color: #667eea;
}

.shadow_3439 .card-8a8f {
  color: #f5576c;
}

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

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

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

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

.steel-91f6 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.fast-77c4 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .steel-91f6 {
    padding: var(--space-md);
  }
  
  .fast-77c4 {
    padding: var(--space-md);
  }
  
  .shade-9c0a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.shadow-4ffb li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.alert_pink_72fb,
.sort_062c,
.slow_7f9c,
.tall_34b8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-center-1e2b {
  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);
}

.focus_a028 .text-center-1e2b {
  background: #e8f5e9;
  color: var(--color-success);
}

.title_next_b670 .text-center-1e2b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.thick-555b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.lower-3a4e {
  text-align: center;
}

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

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

.pattern_37f9 .tooltip_2f1c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.active-light-3484 p {
  margin-bottom: var(--space-md);
}

.badge-yellow-48b1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.frame-north-7e13 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.sort-68a3 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.fixed_b9ed {
  text-align: right;
}

.fixed_b9ed .badge-north-bd1c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.column-green-3d30 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.column-soft-8cef {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video_selected_bf6e[aria-expanded="true"] .icon-f800 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fluid_f069,
.message-3814 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.fluid_f069 h4,
.message-3814 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.fluid_f069 ul,
.message-3814 ul {
  list-style: none;
  padding: 0;
}

.fluid_f069 li,
.message-3814 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.new_f957 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.middle-1982 a:hover {
  color: white;
}

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

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

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

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

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

.background_fb8d a:hover {
  color: white;
}

.texture-soft-97c0 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.bright_f125 .link-d3b0 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.sidebar_middle_7a1e a:hover {
  color: white;
}

.huge-0bf6 {
  list-style: none;
  padding: 0;
}

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

.huge-0bf6 a {
  color: #b0b0b0;
  text-decoration: none;
}

.huge-0bf6 a:hover {
  color: white;
}

.texture-soft-97c0 {
  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);
}

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

.link-9f6f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .texture-soft-97c0 {
    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;
  }
  
  .heading_orange_4aba {
    font-size: 2rem;
  }
  
  .blue-3289 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .notice-f0f9,
  .accent-903a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .image-hard-4a65,
  .background_cd08,
  .bronze-5ae4,
  .primary-west-a0c5,
  .accent-paper-b22e,
  .huge-ff13,
  .sidebar_16c0,
  .block-47b8,
  .caption_3ee5 {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb_hard_d81b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .under-7263 {
    padding: var(--space-lg) 0;
  }
  
  .grid-f3b1 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .grid-f3b1 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .card-8a8f {
    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;
  }
  
  .breadcrumb_hard_d81b {
    grid-template-columns: 1fr;
  }
  
  .form_over_6570,
  .outline_1fe5,
  .outline_narrow_a801 {
    flex-direction: column;
    width: 100%;
  }
  
  .text_outer_d6b1,
  .light_679e,
  .form_over_6570 .card-8a8f,
  .outline_1fe5 .card-8a8f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .heading_orange_4aba {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .blue-3289 {
    font-size: 1.375rem;
  }
  
  .prev_5e09 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .carousel_up_b967,
  .cool_b019,
  .title_light_1ae5,
  .table-c63a,
  .banner_026a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .accent_cc52 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dropdown_pro_dfcc {
    gap: var(--space-xs);
  }
  
  .gallery-red-d010 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .label_inner_e1ae {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pattern_37f9 {
    width: 150px;
    height: 150px;
  }
  
  .icon-first-a921 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active-f40a,
  .accordion_ed7d,
  .form_over_6570,
  .media_right_d7de,
  .dropdown-active-f3b9,
  .plasma_7989,
  .shade_1f1b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .under-7263 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2176 */
.ghost-box-q3 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
