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

.label_south_690a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.inner-c3d0,
header,
.main-fluid-604d,
.accent_d61f,
.mask_lower_4f03,
.lower-6d83,
.hero_hard_b841,
.huge_041e,
.element-current-209c {
  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
   ============================================ */
.inner-c3d0 {
  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);
}

.summary-advanced-3506 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.list-4bfe {
  flex: 1;
}

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

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

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

.thumbnail_4cfa.fn-active-9cb0 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.chip-9073 {
  position: relative;
}

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

.outline-75ed svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.next-af6c svg {
  flex-shrink: 0;
}

/* Header Download Button */
.box-tall-8a39 {
  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;
}

.box-tall-8a39: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);
}

.box-tall-8a39 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.row-down-04e8 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.container-red-7a97[aria-expanded="true"] .row-down-04e8:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.container-red-7a97[aria-expanded="true"] .row-down-04e8:nth-child(2) {
  opacity: 0;
}

.container-red-7a97[aria-expanded="true"] .row-down-04e8:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .list-4bfe {
    display: none;
  }
  
  .container-red-7a97 {
    display: flex;
  }
  
  .out_56a3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .next-af6c,
  .box-tall-8a39 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .chip-9073 {
    position: relative;
  }
  
  .status_531d {
    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;
  }
  
  .outline-75ed[aria-expanded="true"] + .status_531d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .column_5cd7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .carousel_3727 {
    gap: 8px;
  }
  
  .next-af6c {
    display: none;
  }
  
  .box-tall-8a39 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .bronze_cc44 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.media-paper-e89b {
  display: flex;
  align-items: center;
  gap: 6px;
}

.media-paper-e89b svg {
  flex-shrink: 0;
}

.media-paper-e89b a {
  color: var(--color-primary);
  text-decoration: none;
}

.media-paper-e89b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .pro_1309 {
    grid-template-columns: 1fr;
  }
  
  .popup-6bf8 {
    font-size: 1.75rem;
  }
  
  .avatar-d725 {
    order: -1;
    max-width: 100%;
  }
  
  .pattern_61d8 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .popup-6bf8 {
    font-size: 1.5rem;
  }
  
  .outline_23a0 {
    font-size: 1rem;
  }
  
  .section_active_539f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pattern_61d8 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pro-35a6 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.pro-35a6 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);
}

.pro-35a6 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;
}

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

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

.icon-easy-cb67 {
  background: var(--color-bg-section);
}

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

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

.block-8b5a {
  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-a99c {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-7a24 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.gradient-7a24 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) {
  .text_1ddd {
    grid-template-columns: 1fr;
  }
  
  .block-8b5a {
    font-size: 1.75rem;
  }
  
  .container_41bd {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .block-8b5a {
    font-size: 1.5rem;
  }
  
  .container_41bd h3 {
    font-size: 1.375rem;
  }
  
  .container_41bd h4 {
    font-size: 1.125rem;
  }
}

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

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

.disabled-focused-7256 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.copper_97ce {
  flex-shrink: 0;
}

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

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

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

.media-2765,
.dropdown_bronze_4eb9,
.grid-1061 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media-2765 thead,
.dropdown_bronze_4eb9 thead {
  background: var(--color-primary);
  color: white;
}

.media-2765 th,
.media-2765 td,
.dropdown_bronze_4eb9 th,
.dropdown_bronze_4eb9 td,
.grid-1061 th,
.grid-1061 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .media-2765 th,
  .media-2765 td,
  .dropdown_bronze_4eb9 th,
  .dropdown_bronze_4eb9 td,
  .grid-1061 th,
  .grid-1061 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .media-2765,
  .dropdown_bronze_4eb9,
  .grid-1061 {
    min-width: 600px;
  }
}

.media-2765 th,
.dropdown_bronze_4eb9 th,
.grid-1061 th {
  font-weight: 600;
}

.media-2765 tbody tr:hover,
.dropdown_bronze_4eb9 tbody tr:hover,
.grid-1061 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.wide-e2bf h4 {
  color: white;
}

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

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

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

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

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

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

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

.widget-gold-a9cd:hover {
  text-decoration: underline;
}

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

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

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

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

.block-8e05 {
  list-style: none;
  padding: 0;
}

.block-8e05 li {
  padding: var(--space-xs) 0;
}

.active-f61c {
  color: #4caf50;
}

.motion-4a6b {
  color: #ff9800;
}

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

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

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

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

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

.focus-copper-5b2d {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

.block-smooth-2d65:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.block-smooth-2d65 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-hovered-d20b .avatar-east-5585 {
  width: 100%;
  background: white;
}

.info_8cba .avatar-east-5585 {
  color: #667eea;
}

.hero_wide_2dac .avatar-east-5585 {
  color: #f5576c;
}

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

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

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

.highlight-middle-514a {
  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);
}

.column-3b36 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .column-3b36 {
    padding: var(--space-md);
  }
  
  .header_cafb {
    padding: var(--space-md);
  }
  
  .chip_f3fc {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.filter-08e1 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.description_a56e,
.photo_rough_f719,
.in-9c74,
.dropdown-tall-1625 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.widget-advanced-2de1 {
  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) {
  .widget-advanced-2de1 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.background-full-972b {
  border-color: var(--color-success);
}

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

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

.background-full-972b .soft-be25 {
  background: #e8f5e9;
  color: var(--color-success);
}

.chip_2772 .soft-be25 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .module-lite-38f7 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.link-prev-4a68 {
  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);
}

.menu-65ce {
  text-align: center;
}

.gold-38f9 {
  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);
}

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

.gold-38f9 .soft_6883 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .link-prev-4a68 {
    grid-template-columns: 1fr;
  }
}

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

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

.shadow-57c8 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-fresh-5164 {
  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;
}

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

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

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

.item_58f5 {
  text-align: right;
}

.item_58f5 .panel_3d5e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.small-6c10 {
  background: #e8f5e9;
  color: #2e7d32;
}

.wrapper-5296 {
  background: #e3f2fd;
  color: #1565c0;
}

.heading-simple-94fd {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media_daa9[aria-expanded="true"] .stone-9941 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.static-c302,
.nav-bottom-5c9f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.static-c302 h4,
.nav-bottom-5c9f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.static-c302 ul,
.nav-bottom-5c9f ul {
  list-style: none;
  padding: 0;
}

.static-c302 li,
.nav-bottom-5c9f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.link-e743 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.preview-south-85d1 {
  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);
}

.preview-south-85d1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.preview-south-85d1 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.hover_action_defd a:hover {
  color: white;
}

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

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

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

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

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

.preview_prev_677f a:hover {
  color: white;
}

.outline-a324 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .popup_a085,
  .element-top-3b85 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.gallery_7ac4 .primary_action_46f0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.logo-white-c03b {
  list-style: none;
  padding: 0;
}

.logo-white-c03b li {
  margin-bottom: var(--space-xs);
}

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

.logo-white-c03b a:hover {
  color: white;
}

.advanced-699b {
  list-style: none;
  padding: 0;
}

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

.advanced-699b a {
  color: #b0b0b0;
  text-decoration: none;
}

.advanced-699b a:hover {
  color: white;
}

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

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

.article-pink-3071 a {
  color: #4caf50;
  text-decoration: none;
}

.over-4cfc {
  font-size: 0.75rem;
  color: #666666;
}

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

.content-white-6d51 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.content-white-6d51 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;
}

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

.grid-a0a0:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .outline-a324 {
    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;
  }
  
  .popup-6bf8 {
    font-size: 2rem;
  }
  
  .block-8b5a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pro_1309,
  .text_1ddd {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focus_up_09e2,
  .summary_fedf,
  .badge-9b7c,
  .module-lite-38f7,
  .wrapper-5a23,
  .backdrop_0b07,
  .progress_middle_34d4,
  .popup_a085,
  .element-top-3b85 {
    grid-template-columns: 1fr;
  }
  
  .plasma_e9e0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero_hard_b841 {
    padding: var(--space-lg) 0;
  }
  
  .pro-35a6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pro-35a6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .avatar-east-5585 {
    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;
  }
  
  .plasma_e9e0 {
    grid-template-columns: 1fr;
  }
  
  .tag_48f6,
  .surface_last_8cd3,
  .widget-large-b4bc {
    flex-direction: column;
    width: 100%;
  }
  
  .accent_selected_c0a9,
  .selected_2a78,
  .tag_48f6 .avatar-east-5585,
  .surface_last_8cd3 .avatar-east-5585 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .popup-6bf8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .block-8b5a {
    font-size: 1.375rem;
  }
  
  .silver_da1d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .mini_a529,
  .block-smooth-2d65,
  .text-pressed-364d,
  .simple-05c3,
  .frame_6ece {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget-advanced-2de1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .complex-0415 {
    gap: var(--space-xs);
  }
  
  .media-paper-e89b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .icon_b698 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .gold-38f9 {
    width: 150px;
    height: 150px;
  }
  
  .overlay-dcf2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .inner-c3d0,
  .main-fluid-604d,
  .tag_48f6,
  .brown_2ec7,
  .huge_041e,
  .element-current-209c,
  .container-red-7a97 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero_hard_b841 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2878 */
.ghost-box-q2 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
