/* ============================================
   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)
   ============================================ */
.dropdown-large-1e74 {
  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;
}

.dropdown-large-1e74:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.texture_wood_b4e1):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. */
.texture_wood_b4e1,
header,
.article-ea93,
.bronze-b151,
.block-9c0e,
.purple-947f,
.block_c354,
.backdrop-steel-b8c1,
.detail_4b98 {
  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
   ============================================ */
.texture_wood_b4e1 {
  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);
}

.surface-45a4 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.short-cafe img {
  height: 36px;
  width: auto;
  display: block;
}

.tabs-lower-bce2 {
  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;
}

.image-gas-5375 {
  flex: 1;
}

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

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

.overlay-1a9b:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.overlay-1a9b.box_clean_e701 {
  background: var(--color-primary);
  color: white;
}

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

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

.advanced-2802 svg {
  transition: transform 0.2s ease;
}

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

.caption-86c9 {
  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;
}

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

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

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

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

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

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

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

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

.large_6bcf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .image-gas-5375::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .image-gas-5375.tag_easy_2123 {
    display: block;
    right: 0;
  }
  
  .notice-f3a5 {
    flex-direction: column;
    gap: 0;
  }
  
  .overlay-1a9b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .image-gas-5375::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;
  }
  
  .image-gas-5375.tag_easy_2123::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .image-gas-5375 {
    display: none;
  }
  
  .dirty_3e47 {
    display: flex;
  }
  
  .tabs-lower-bce2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .large_6bcf,
  .header_b060 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .current_f258 {
    position: relative;
  }
  
  .caption-86c9 {
    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;
  }
  
  .advanced-2802[aria-expanded="true"] + .caption-86c9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .north_435e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.accordion_active_ff05 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.large-c282 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.carousel-5bb1 {
  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;
}

.easy-252a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.easy-252a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.narrow-32c3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.column-plasma-6ba1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.accent-over-0ff6 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .soft_ff42 {
    grid-template-columns: 1fr;
  }
  
  .south_af08 {
    font-size: 1.75rem;
  }
  
  .column-plasma-6ba1 {
    order: -1;
    max-width: 100%;
  }
  
  .notice_02f1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .south_af08 {
    font-size: 1.5rem;
  }
  
  .texture_1d28 {
    font-size: 1rem;
  }
  
  .large-c282 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notice_02f1 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim-2e62 {
  background: var(--color-bg-section);
}

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

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

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

.hero-action-4c68 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.thumbnail-403a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.thumbnail-403a 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);
}

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

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

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

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

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

.thumbnail-403a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

.hero-fe7c 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) {
  .picture_prev_4d82 {
    grid-template-columns: 1fr;
  }
  
  .highlight_75eb {
    font-size: 1.75rem;
  }
  
  .thumbnail-403a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .highlight_75eb {
    font-size: 1.5rem;
  }
  
  .thumbnail-403a h3 {
    font-size: 1.375rem;
  }
  
  .thumbnail-403a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.outer-cd15 {
  flex-shrink: 0;
}

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

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

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

.badge-light-07ce,
.grid-3bb9,
.secondary_rough_9e1c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.badge-light-07ce thead,
.grid-3bb9 thead {
  background: var(--color-primary);
  color: white;
}

.badge-light-07ce th,
.badge-light-07ce td,
.grid-3bb9 th,
.grid-3bb9 td,
.secondary_rough_9e1c th,
.secondary_rough_9e1c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .badge-light-07ce th,
  .badge-light-07ce td,
  .grid-3bb9 th,
  .grid-3bb9 td,
  .secondary_rough_9e1c th,
  .secondary_rough_9e1c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .badge-light-07ce,
  .grid-3bb9,
  .secondary_rough_9e1c {
    min-width: 600px;
  }
}

.badge-light-07ce th,
.grid-3bb9 th,
.secondary_rough_9e1c th {
  font-weight: 600;
}

.badge-light-07ce tbody tr:hover,
.grid-3bb9 tbody tr:hover,
.secondary_rough_9e1c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption-28a7 h4 {
  color: white;
}

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

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

.gradient-c0e7:last-child {
  border-bottom: none;
}

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

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

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

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

.east-a8d6:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hidden-765d {
  color: #4caf50;
}

.filter-gas-a6f3 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.status-3a47 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-dirty-3a2c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.picture-dirty-3a2c ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.picture-dirty-3a2c li {
  padding: var(--space-xs) 0;
  color: white;
}

.picture-dirty-3a2c .photo-452f {
  width: 100%;
  background: white;
}

.video_first_ba37 .photo-452f {
  color: #667eea;
}

.small-9c64 .photo-452f {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .caption-ff54 {
    padding: var(--space-md);
  }
  
  .inner-bbdb {
    padding: var(--space-md);
  }
  
  .summary-2958 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.feature_soft_32d1,
.media_complex_6f30,
.warm-45d6,
.icon-c0aa {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.progress-tiny-3cac h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.outline-dark-02b9 {
  border-color: var(--color-success);
}

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

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

.outline-dark-02b9 .fluid-7ba1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.progress_next_876e .fluid-7ba1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-d0af {
  text-align: center;
}

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

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

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

.title-black-2fdd {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.video-prev-d04c {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.panel-35a4 {
  border: 2px solid #4caf50;
}

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

.paragraph-over-e7af {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.card_pro_f17b {
  text-align: right;
}

.card_pro_f17b .column-tall-487f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.modal-hard-a040 {
  background: #e8f5e9;
  color: #2e7d32;
}

.preview_hard_8081 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.notification-lite-177b {
  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);
}

.notification-lite-177b:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.table-a632 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.main_7190[aria-expanded="true"] .table-a632 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal_silver_84c4 ul,
.filter_next_cf8b ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.widget-4ca9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.heading_0a20 {
  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_upper_309c {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_liquid_63bc .steel-c0ac {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.footer_pink_7e69 a:hover {
  color: white;
}

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

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

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

.upper_d787 a:hover {
  color: white;
}

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

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

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

.alert-thick-688e {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.red-cdc4:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .basic_6b96 {
    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;
  }
  
  .south_af08 {
    font-size: 2rem;
  }
  
  .highlight_75eb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .soft_ff42,
  .picture_prev_4d82 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .orange-0275,
  .solid_59ce,
  .detail-next-f8dc,
  .fast-fabd,
  .detail_tiny_a820,
  .yellow-5e6e,
  .complex_5268,
  .carousel_warm_190a {
    grid-template-columns: 1fr;
  }
  
  .label_9308 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .block_c354 {
    padding: var(--space-lg) 0;
  }
  
  .slider_tall_f379 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .slider_tall_f379 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .photo-452f {
    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;
  }
  
  .label_9308 {
    grid-template-columns: 1fr;
  }
  
  .narrow-32c3,
  .over-0891,
  .green-26dd {
    flex-direction: column;
    width: 100%;
  }
  
  .frame_bbde,
  .outline_7652,
  .narrow-32c3 .photo-452f,
  .over-0891 .photo-452f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .south_af08 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .highlight_75eb {
    font-size: 1.375rem;
  }
  
  .huge-abc9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .primary-warm-e3e5,
  .paper-32db,
  .pattern_7208,
  .section_c068,
  .current-2a30 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .module_stone_db8e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .notification-91b5 {
    gap: var(--space-xs);
  }
  
  .accordion_active_ff05 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .simple-3636 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .sort_tiny_b529 {
    width: 150px;
    height: 150px;
  }
  
  .thick-fc68 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .texture_wood_b4e1,
  .article-ea93,
  .narrow-32c3,
  .block_center_ecd2,
  .backdrop-steel-b8c1,
  .detail_4b98,
  .dirty_3e47 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .block_c354 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 002e */
.ghost-box-a3 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.3;
}
