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

.down-cf3e:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.new_1382):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. */
.new_1382,
header,
.outer-7e21,
.brown_3258,
.shadow_tiny_a363,
.backdrop-pro-4c13,
.container_white_b14f,
.row_orange_7531,
.light_c827 {
  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
   ============================================ */
.new_1382 {
  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);
}

.over-b6d7 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.current-1494 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.alert-bottom-1349 {
  flex: 1;
}

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

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

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

.outline_orange_3e70.table-24a5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.paragraph-steel-1664 {
  position: relative;
}

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

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

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

.mask-8c2d {
  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;
}

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

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

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

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

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

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

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

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

.list_e282 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.input-thick-bf59[aria-expanded="true"] .focus_0a71:nth-child(2) {
  opacity: 0;
}

.input-thick-bf59[aria-expanded="true"] .focus_0a71:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .alert-bottom-1349::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .alert-bottom-1349.button-medium-8d84 {
    display: block;
    right: 0;
  }
  
  .input-over-fd63 {
    flex-direction: column;
    gap: 0;
  }
  
  .outline_orange_3e70 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .alert-bottom-1349::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;
  }
  
  .alert-bottom-1349.button-medium-8d84::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .alert-bottom-1349 {
    display: none;
  }
  
  .input-thick-bf59 {
    display: flex;
  }
  
  .sort_large_2de6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .list_e282,
  .table-d0b1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .paragraph-steel-1664 {
    position: relative;
  }
  
  .mask-8c2d {
    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;
  }
  
  .easy_5482[aria-expanded="true"] + .mask-8c2d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .grid-dynamic-03d7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .article-over-b9b8 {
    gap: 8px;
  }
  
  .list_e282 {
    display: none;
  }
  
  .table-d0b1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .current-1494 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.shadow_wood_eb11 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-9d36 {
  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;
}

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

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

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

.column-bright-a46d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.block-447b {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.sort-prev-1afd {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .active-09a8 {
    grid-template-columns: 1fr;
  }
  
  .accordion-bc66 {
    font-size: 1.75rem;
  }
  
  .block-447b {
    order: -1;
    max-width: 100%;
  }
  
  .thick_1612 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .accordion-bc66 {
    font-size: 1.5rem;
  }
  
  .article_down_6aa7 {
    font-size: 1rem;
  }
  
  .purple_d191 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .thick_1612 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-out-c623 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.over-cc95 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) {
  .column_left_6e77 {
    grid-template-columns: 1fr;
  }
  
  .stone_af1f {
    font-size: 1.75rem;
  }
  
  .active_blue_937f {
    max-width: 100%;
  }
}

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

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

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

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

.icon-7bef {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.hidden-ee0e {
  flex-shrink: 0;
}

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

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

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

.tertiary_dim_a1e6,
.content-easy-4240,
.box_195d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tertiary_dim_a1e6 thead,
.content-easy-4240 thead {
  background: var(--color-primary);
  color: white;
}

.tertiary_dim_a1e6 th,
.tertiary_dim_a1e6 td,
.content-easy-4240 th,
.content-easy-4240 td,
.box_195d th,
.box_195d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tertiary_dim_a1e6 th,
  .tertiary_dim_a1e6 td,
  .content-easy-4240 th,
  .content-easy-4240 td,
  .box_195d th,
  .box_195d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tertiary_dim_a1e6,
  .content-easy-4240,
  .box_195d {
    min-width: 600px;
  }
}

.tertiary_dim_a1e6 th,
.content-easy-4240 th,
.box_195d th {
  font-weight: 600;
}

.tertiary_dim_a1e6 tbody tr:hover,
.content-easy-4240 tbody tr:hover,
.box_195d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.heading-5907 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.left-e3b2 {
  font-weight: 600;
  color: white;
}

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

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

.secondary_731a {
  color: #4caf50;
}

.sidebar-0aa4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-e8fd .list_smooth_aa48 {
  width: 100%;
  background: white;
}

.hover_a349 .list_smooth_aa48 {
  color: #667eea;
}

.accent-68e9 .list_smooth_aa48 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .container_pressed_e4a7 {
    padding: var(--space-md);
  }
  
  .large-db4e {
    padding: var(--space-md);
  }
  
  .purple_48af {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.picture-bright-798a,
.hard-90ab,
.icon-ae9b,
.current_8433 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.hot-01a5:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.soft-4ea3 {
  border-color: var(--color-warning);
}

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

.medium_d0e2 .first-5755 {
  background: #e8f5e9;
  color: var(--color-success);
}

.soft-4ea3 .first-5755 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.section-tall-59cc {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.pressed-2c3e {
  margin-top: var(--space-xxl);
}

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

.gradient-f5e2 {
  text-align: center;
}

.description-south-c74a {
  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);
}

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

.description-south-c74a .left-e3b2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.thumbnail-iron-7939 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.iron-1bd5 {
  border: 2px solid #4caf50;
}

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

.shade-37c0 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.hero_b307 {
  text-align: right;
}

.hero_b307 .block-c0bf {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.link-dynamic-c953 {
  background: #e3f2fd;
  color: #1565c0;
}

.hover-out-3f0a {
  background: #fff3e0;
  color: #e65100;
}

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

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

.popup-668d {
  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);
}

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.header-hovered-9e08 {
  max-width: 900px;
  margin: 0 auto;
}

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

.info-hot-7163 {
  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);
}

.info-hot-7163:hover {
  background: var(--color-bg-alt);
}

.module-9b35 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.info-hot-7163[aria-expanded="true"] .module-9b35 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip_purple_1f5b ul,
.notification_e5b7 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.module_0ca5 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-mini-8e12 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.frame-5b31 .warm-b379 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.sidebar_fb10 a:hover {
  color: white;
}

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

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

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

.row_6a1b a:hover {
  color: white;
}

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

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

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

.icon-orange-72ae {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .purple-f4d1 {
    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;
  }
  
  .accordion-bc66 {
    font-size: 2rem;
  }
  
  .stone_af1f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .active-09a8,
  .column_left_6e77 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .blue-b52b,
  .link_plasma_0e2e,
  .sidebar-inner-093b,
  .list_c37f,
  .background-f059,
  .filter_b6cf,
  .stale_1260,
  .gallery_3673 {
    grid-template-columns: 1fr;
  }
  
  .active-9dc1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .container_white_b14f {
    padding: var(--space-lg) 0;
  }
  
  .left_f9de li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .left_f9de li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .list_smooth_aa48 {
    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;
  }
  
  .active-9dc1 {
    grid-template-columns: 1fr;
  }
  
  .column-bright-a46d,
  .picture-ddc2,
  .layout_up_5f8f {
    flex-direction: column;
    width: 100%;
  }
  
  .prev-b75d,
  .full-f54d,
  .column-bright-a46d .list_smooth_aa48,
  .picture-ddc2 .list_smooth_aa48 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .accordion-bc66 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .stone_af1f {
    font-size: 1.375rem;
  }
  
  .label_steel_6be5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .right_f753,
  .dim-8567,
  .large-55c6,
  .menu-action-8117,
  .focus-63ea {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .cool-aa7d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .upper_a9f0 {
    gap: var(--space-xs);
  }
  
  .shadow_wood_eb11 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .button_middle_fe12 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .description-south-c74a {
    width: 150px;
    height: 150px;
  }
  
  .hovered-5543 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .new_1382,
  .outer-7e21,
  .column-bright-a46d,
  .easy-7815,
  .row_orange_7531,
  .light_c827,
  .input-thick-bf59 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .container_white_b14f {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 88df */
.promo-block-z4 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.1;
}
