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

.info-top-e8cf:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.secondary_323f,
header,
.copper-5423,
.orange-6f79,
.gallery-selected-283a,
.upper-5929,
.header_4840,
.clean-d7ea,
.avatar-2282 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

.background_d268 {
  flex: 1;
}

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

.slider-thick-66fe {
  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);
}

.slider-thick-66fe:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.slider-thick-66fe.block-pressed-010c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.box-0ef0 {
  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;
}

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

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

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

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

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

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

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

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

.aside-hovered-bae7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.button_a586[aria-expanded="true"] .search-865a:nth-child(2) {
  opacity: 0;
}

.button_a586[aria-expanded="true"] .search-865a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .background_d268::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .background_d268.outline-out-cb3a {
    display: block;
    right: 0;
  }
  
  .north_cc4d {
    flex-direction: column;
    gap: 0;
  }
  
  .slider-thick-66fe {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .background_d268::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;
  }
  
  .background_d268.outline-out-cb3a::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .background_d268 {
    display: none;
  }
  
  .button_a586 {
    display: flex;
  }
  
  .clean_d64b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .aside-hovered-bae7,
  .warm_8113 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .sidebar_pink_cd31 {
    position: relative;
  }
  
  .box-0ef0 {
    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;
  }
  
  .main_8214[aria-expanded="true"] + .box-0ef0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .frame_liquid_775f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hovered-1d81 {
    gap: 8px;
  }
  
  .aside-hovered-bae7 {
    display: none;
  }
  
  .warm_8113 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .thumbnail_da13 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.article_7904 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.video-orange-bca0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.video-orange-bca0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.media-action-4097 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.media-action-4097 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .input-71af {
    grid-template-columns: 1fr;
  }
  
  .iron-8429 {
    font-size: 1.75rem;
  }
  
  .gradient_48a4 {
    order: -1;
    max-width: 100%;
  }
  
  .middle_f958 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .iron-8429 {
    font-size: 1.5rem;
  }
  
  .breadcrumb_small_1556 {
    font-size: 1rem;
  }
  
  .video-orange-bca0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .middle_f958 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.content-over-1369 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.section-f195 {
  list-style: none;
  counter-reset: toc-counter;
}

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

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

.section-f195 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over_d1d1 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) {
  .cold-0059 {
    grid-template-columns: 1fr;
  }
  
  .popup_wood_6f49 {
    font-size: 1.75rem;
  }
  
  .tabs-c151 {
    max-width: 100%;
  }
}

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

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

.shade-59af {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.up-14d1 {
  flex-shrink: 0;
}

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

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

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

.header-thick-548c,
.mini-9ef7,
.tag-green-3cb1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.header-thick-548c thead,
.mini-9ef7 thead {
  background: var(--color-primary);
  color: white;
}

.header-thick-548c th,
.header-thick-548c td,
.mini-9ef7 th,
.mini-9ef7 td,
.tag-green-3cb1 th,
.tag-green-3cb1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header-thick-548c th,
  .header-thick-548c td,
  .mini-9ef7 th,
  .mini-9ef7 td,
  .tag-green-3cb1 th,
  .tag-green-3cb1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .header-thick-548c,
  .mini-9ef7,
  .tag-green-3cb1 {
    min-width: 600px;
  }
}

.header-thick-548c th,
.mini-9ef7 th,
.tag-green-3cb1 th {
  font-weight: 600;
}

.header-thick-548c tbody tr:hover,
.mini-9ef7 tbody tr:hover,
.tag-green-3cb1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.carousel_2587 h4 {
  color: white;
}

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

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

.title-simple-45dc:last-child {
  border-bottom: none;
}

.title-simple-45dc dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.title-simple-45dc dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.rough-f341:hover {
  text-decoration: underline;
}

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

.focus-first-5a66 {
  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);
}

.focus-first-5a66 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.progress-b6a1 {
  list-style: none;
  padding: 0;
}

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

.pro_9650 {
  color: #4caf50;
}

.texture_aaae {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.nav-in-4ee9 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.detail-lower-475e {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.new-af24 .mask-97b1 {
  width: 100%;
  background: white;
}

.glass-f6ba .mask-97b1 {
  color: #667eea;
}

.white_098b .mask-97b1 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .text_green_bfea {
    padding: var(--space-md);
  }
  
  .card_f702 {
    padding: var(--space-md);
  }
  
  .wide_74e0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.rough-3de8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.top-5e89,
.banner_selected_ed46,
.alert_white_53ae,
.paragraph_mini_3773 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup_f2c2 .disabled-ef9f {
  background: #e8f5e9;
  color: var(--color-success);
}

.tiny_14af .disabled-ef9f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.container-prev-2272 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.background-741d {
  margin-top: var(--space-xxl);
}

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

.texture_west_eada {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.paragraph-under-5a41 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.table-c046 {
  border: 2px solid #4caf50;
}

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

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

.secondary-inner-2563 {
  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;
}

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

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

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

.hidden-900b {
  text-align: right;
}

.hidden-900b .thumbnail-bc9d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.avatar-full-88b4 {
  background: #e8f5e9;
  color: #2e7d32;
}

.progress-d500 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.preview-fluid-4e57 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.banner-thick-0f24 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.image_rough_cbaf[aria-expanded="true"] .banner-thick-0f24 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .pagination-glass-533e {
    grid-template-columns: 1fr;
  }
}

.orange_8362,
.up-9f0c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.orange_8362 h4,
.up-9f0c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.orange_8362 ul,
.up-9f0c ul {
  list-style: none;
  padding: 0;
}

.orange_8362 li,
.up-9f0c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-1304 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_d9fe .popup_a207 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.active_f199 a:hover {
  color: white;
}

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

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

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

.south_b3fe a:hover {
  color: white;
}

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

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

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

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

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

.avatar-red-42f0 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.avatar-red-42f0:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .warm_750a {
    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;
  }
  
  .iron-8429 {
    font-size: 2rem;
  }
  
  .popup_wood_6f49 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .input-71af,
  .cold-0059 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .card-128c,
  .container_7c5f,
  .gold-98cb,
  .dim-4555,
  .pagination-glass-533e,
  .widget_yellow_c982,
  .breadcrumb_112e,
  .short-db60 {
    grid-template-columns: 1fr;
  }
  
  .dim-630a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .header_4840 {
    padding: var(--space-lg) 0;
  }
  
  .section-f195 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .section-f195 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .mask-97b1 {
    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;
  }
  
  .dim-630a {
    grid-template-columns: 1fr;
  }
  
  .east_33c9,
  .preview-bf95,
  .box-7cb8 {
    flex-direction: column;
    width: 100%;
  }
  
  .content-over-1369,
  .frame_iron_7e6d,
  .east_33c9 .mask-97b1,
  .preview-bf95 .mask-97b1 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .iron-8429 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .popup_wood_6f49 {
    font-size: 1.375rem;
  }
  
  .avatar-160d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .easy-c7af,
  .image_fresh_4710,
  .short_0bf5,
  .next-de76,
  .sort-a7d9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .panel_current_d885 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pagination-a2f4 {
    gap: var(--space-xs);
  }
  
  .article_7904 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .focus-first-5a66 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .bottom_fe16 {
    width: 150px;
    height: 150px;
  }
  
  .full_c1a7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .secondary_323f,
  .copper-5423,
  .east_33c9,
  .tertiary_855a,
  .clean-d7ea,
  .avatar-2282,
  .button_a586 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .header_4840 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.purple_4b41 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 4642 */
.ghost-box-g8 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.2;
}
