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

.gallery_hard_2971:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.yellow_8250,
header,
.content-medium-176c,
.frame-down-6543,
.menu_8d09,
.mask-d107,
.avatar-120c,
.gradient-cc89,
.text_out_9ed5 {
  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
   ============================================ */
.yellow_8250 {
  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);
}

.grid-pro-b581 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.dropdown-tiny-5d1c {
  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;
}

.badge_copper_729c {
  flex: 1;
}

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

.element-simple-e89c {
  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);
}

.element-simple-e89c:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.element-simple-e89c.fn-active-6341 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.dynamic-57c6 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.icon-7d31 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.item-up-5de7 {
  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;
}

.item-up-5de7: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);
}

.item-up-5de7 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.breadcrumb-red-34c5 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.overlay_4592[aria-expanded="true"] .breadcrumb-red-34c5:nth-child(2) {
  opacity: 0;
}

.overlay_4592[aria-expanded="true"] .breadcrumb-red-34c5:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .badge_copper_729c::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .badge_copper_729c.paragraph-soft-8153 {
    display: block;
    right: 0;
  }
  
  .chip-9f19 {
    flex-direction: column;
    gap: 0;
  }
  
  .element-simple-e89c {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .badge_copper_729c::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;
  }
  
  .badge_copper_729c.paragraph-soft-8153::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .badge_copper_729c {
    display: none;
  }
  
  .overlay_4592 {
    display: flex;
  }
  
  .dropdown-tiny-5d1c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .icon-7d31,
  .item-up-5de7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .dynamic-57c6 {
    position: relative;
  }
  
  .feature_9628 {
    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;
  }
  
  .fixed_fd8f[aria-expanded="true"] + .feature_9628 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .liquid_2cd1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .summary-pressed-cad1 {
    gap: 8px;
  }
  
  .icon-7d31 {
    display: none;
  }
  
  .item-up-5de7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tabs_narrow_ea1d img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .item-up-5de7 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .item-up-5de7 svg {
    width: 14px;
    height: 14px;
  }
  
  .logo-8dbb {
    gap: var(--space-sm);
  }
}

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

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

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

.center-41bc svg {
  flex-shrink: 0;
}

.center-41bc a {
  color: var(--color-primary);
  text-decoration: none;
}

.center-41bc a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.secondary-0af4 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.detail-copper-d5ef {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-copper-d5ef strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.tiny-3c83 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .chip_orange_f805 {
    grid-template-columns: 1fr;
  }
  
  .complex_bcfc {
    font-size: 1.75rem;
  }
  
  .tiny-3c83 {
    order: -1;
    max-width: 100%;
  }
  
  .sort_3e86 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .complex_bcfc {
    font-size: 1.5rem;
  }
  
  .notification-9a73 {
    font-size: 1rem;
  }
  
  .left_f890 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .sort_3e86 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-thick-dd97 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);
}

.list-thick-dd97 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;
}

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

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

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

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

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

.motion-29b5 {
  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);
}

.secondary-active-120c {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed-6ab8 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.fixed-6ab8 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) {
  .hard-9c34 {
    grid-template-columns: 1fr;
  }
  
  .motion-29b5 {
    font-size: 1.75rem;
  }
  
  .south-f701 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .motion-29b5 {
    font-size: 1.5rem;
  }
  
  .south-f701 h3 {
    font-size: 1.375rem;
  }
  
  .south-f701 h4 {
    font-size: 1.125rem;
  }
}

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

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

.item-out-5082 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.link_bc50 {
  flex-shrink: 0;
}

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

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

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

.hot-2328,
.lower_1af5,
.new_b665 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hot-2328 thead,
.lower_1af5 thead {
  background: var(--color-primary);
  color: white;
}

.hot-2328 th,
.hot-2328 td,
.lower_1af5 th,
.lower_1af5 td,
.new_b665 th,
.new_b665 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hot-2328 th,
  .hot-2328 td,
  .lower_1af5 th,
  .lower_1af5 td,
  .new_b665 th,
  .new_b665 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hot-2328,
  .lower_1af5,
  .new_b665 {
    min-width: 600px;
  }
}

.hot-2328 th,
.lower_1af5 th,
.new_b665 th {
  font-weight: 600;
}

.hot-2328 tbody tr:hover,
.lower_1af5 tbody tr:hover,
.new_b665 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.form-narrow-60f5 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.section_north_f005 h4 {
  color: white;
}

.row-next-74e5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.aside-ea10:last-child {
  border-bottom: none;
}

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

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

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

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

.section-solid-104b:hover {
  text-decoration: underline;
}

.video-hard-88f2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.action-36fb {
  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);
}

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

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

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

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

.modal_copper_45f3 {
  color: #4caf50;
}

.summary-7b27 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.logo-red-2975 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture_basic_b601 .active_0298 {
  width: 100%;
  background: white;
}

.avatar_1677 .active_0298 {
  color: #667eea;
}

.preview-efb6 .active_0298 {
  color: #f5576c;
}

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

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

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

.section_stale_ce0b {
  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-green-c2cc h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.huge-646c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .column-green-c2cc {
    padding: var(--space-md);
  }
  
  .huge-646c {
    padding: var(--space-md);
  }
  
  .gradient_slow_124e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.pink_7bc0,
.paragraph_gold_e216,
.filter-purple-2ff1,
.soft-87d8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.paragraph-8f7a:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

@media (max-width: 768px) {
  .search-tiny-3bd2 {
    grid-template-columns: 1fr;
  }
}

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

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

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

.thumbnail-upper-d760 {
  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);
}

.accordion_e24a .thumbnail-upper-d760 {
  background: #e8f5e9;
  color: var(--color-success);
}

.logo_pro_560d .thumbnail-upper-d760 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.pattern-up-ea1d {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.message-fast-c52a {
  margin-top: var(--space-xxl);
}

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

.mask-copper-4175 {
  text-align: center;
}

.dynamic-8eee {
  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);
}

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

.dynamic-8eee .slider_e4d8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-hard-316a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

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

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

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

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

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

.notification-a68a {
  text-align: right;
}

.notification-a68a .breadcrumb-smooth-6f91 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.preview-south-ad06 {
  background: #e8f5e9;
  color: #2e7d32;
}

.last-21c5 {
  background: #e3f2fd;
  color: #1565c0;
}

.heading-orange-c670 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.icon-9c8e {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

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

.slider-stale-261c {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.description-hard-b9c6 {
  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);
}

.description-hard-b9c6:hover {
  background: var(--color-bg-alt);
}

.list-clean-96a0 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.description-hard-b9c6[aria-expanded="true"] .list-clean-96a0 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hover-blue-7e0a {
    grid-template-columns: 1fr;
  }
}

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

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

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

.image_804f h4,
.grid_3696 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.image_804f ul,
.grid_3696 ul {
  list-style: none;
  padding: 0;
}

.image_804f li,
.grid_3696 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bronze_ea94 {
  font-style: italic;
}

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

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

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

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

.filter-glass-95e0 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-a7de a:hover {
  color: white;
}

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

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

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

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

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

.in_1164 a:hover {
  color: white;
}

.hard-963d > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.focus-center-b344 .small_aae6 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.section_hovered_c575 a:hover {
  color: white;
}

.dynamic-d5bc {
  list-style: none;
  padding: 0;
}

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

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

.dynamic-d5bc a:hover {
  color: white;
}

.hard-963d {
  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);
}

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

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

.popup-d9f2 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.active_1e5f 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_ad5f {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .hard-963d {
    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;
  }
  
  .complex_bcfc {
    font-size: 2rem;
  }
  
  .motion-29b5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .chip_orange_f805,
  .hard-9c34 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .bronze_5bbc,
  .search-tiny-3bd2,
  .text_9991,
  .accent_8c80,
  .hover-blue-7e0a,
  .silver-5afe,
  .red_344d,
  .frame_light_bec2,
  .east-1f75 {
    grid-template-columns: 1fr;
  }
  
  .south_8f8a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .avatar-120c {
    padding: var(--space-lg) 0;
  }
  
  .list-thick-dd97 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .list-thick-dd97 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .active_0298 {
    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;
  }
  
  .south_8f8a {
    grid-template-columns: 1fr;
  }
  
  .picture-faf8,
  .filter-glass-95e0,
  .status_bbe5 {
    flex-direction: column;
    width: 100%;
  }
  
  .huge_1684,
  .slider-c043,
  .picture-faf8 .active_0298,
  .filter-glass-95e0 .active_0298 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .complex_bcfc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .motion-29b5 {
    font-size: 1.375rem;
  }
  
  .slider-915d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .smooth_f2d3,
  .outline_eec1,
  .short-9e89,
  .container_down_bd15,
  .main_64f9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .card-hard-5897 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .media-medium-1fd4 {
    gap: var(--space-xs);
  }
  
  .center-41bc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .action-36fb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dynamic-8eee {
    width: 150px;
    height: 150px;
  }
  
  .solid_d794 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .yellow_8250,
  .content-medium-176c,
  .picture-faf8,
  .over_4e4d,
  .gradient-cc89,
  .text_out_9ed5,
  .overlay_4592 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .avatar-120c {
    page-break-inside: avoid;
  }
}

/* css-noise: e764 */
.ghost-box-h1 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
