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

.feature_c06b:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.label_hovered_39cf):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. */
.label_hovered_39cf,
header,
.content_c515,
.progress_fd81,
.thumbnail-a794,
.soft-c42d,
.shadow-action-fcdc,
.notice_7bde,
.out_941a {
  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
   ============================================ */
.label_hovered_39cf {
  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);
}

.solid-3ec5 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.dim-2802 img {
  height: 36px;
  width: auto;
  display: block;
}

.feature-63eb {
  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;
}

.content-short-3b44 {
  flex: 1;
}

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

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

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

.paragraph-a732.motion-9eb0 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.thick-1539 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.list-thick-797f {
  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-thick-797f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.list-thick-797f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .content-short-3b44::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .content-short-3b44.medium-0206 {
    display: block;
    right: 0;
  }
  
  .video-fluid-781c {
    flex-direction: column;
    gap: 0;
  }
  
  .paragraph-a732 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .content-short-3b44::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;
  }
  
  .content-short-3b44.medium-0206::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .content-short-3b44 {
    display: none;
  }
  
  .summary_4261 {
    display: flex;
  }
  
  .feature-63eb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .list-thick-797f,
  .element_hovered_1995 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .thick-1539 {
    position: relative;
  }
  
  .tertiary_silver_377e {
    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;
  }
  
  .frame_91b0[aria-expanded="true"] + .tertiary_silver_377e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .surface-pink-a29e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .banner-white-b07d {
    gap: 8px;
  }
  
  .list-thick-797f {
    display: none;
  }
  
  .element_hovered_1995 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dim-2802 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.active_lite_06ce svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.soft-07cc a {
  color: var(--color-primary);
  text-decoration: none;
}

.soft-07cc a:hover {
  text-decoration: underline;
}

.highlight-53dd {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.left-931d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.mini-0b80 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .down_dace {
    grid-template-columns: 1fr;
  }
  
  .dynamic_b7e9 {
    font-size: 1.75rem;
  }
  
  .mini-0b80 {
    order: -1;
    max-width: 100%;
  }
  
  .active_ee16 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dynamic_b7e9 {
    font-size: 1.5rem;
  }
  
  .fixed_22e1 {
    font-size: 1rem;
  }
  
  .soft-07cc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .active_ee16 {
    max-width: 250px;
  }
}

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

.item-907e {
  background: var(--color-primary);
  color: white;
}

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

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

.tooltip-7ff7:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.tiny-80cf {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-f726 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;
}

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

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

.info-993e {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-warm-cd19 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.grid-warm-cd19 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) {
  .simple_b05d {
    grid-template-columns: 1fr;
  }
  
  .inner_e867 {
    font-size: 1.75rem;
  }
  
  .icon_yellow_16ec {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.east-ae0f {
  flex-shrink: 0;
}

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

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

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

.form-top-b54b,
.mask_9f5d,
.hidden_8bda {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.form-top-b54b thead,
.mask_9f5d thead {
  background: var(--color-primary);
  color: white;
}

.form-top-b54b th,
.form-top-b54b td,
.mask_9f5d th,
.mask_9f5d td,
.hidden_8bda th,
.hidden_8bda td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .form-top-b54b th,
  .form-top-b54b td,
  .mask_9f5d th,
  .mask_9f5d td,
  .hidden_8bda th,
  .hidden_8bda td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .form-top-b54b,
  .mask_9f5d,
  .hidden_8bda {
    min-width: 600px;
  }
}

.form-top-b54b th,
.mask_9f5d th,
.hidden_8bda th {
  font-weight: 600;
}

.form-top-b54b tbody tr:hover,
.mask_9f5d tbody tr:hover,
.hidden_8bda tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.outline_0a2f h4 {
  color: white;
}

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

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

.north-fbcb:last-child {
  border-bottom: none;
}

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

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

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

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

.hard-d4dd:hover {
  text-decoration: underline;
}

.component-left-27a7 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.slow-8ba7 {
  color: #4caf50;
}

.pagination-dc96 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.left-2c6f .tall_c894 {
  width: 100%;
  background: white;
}

.full-c6e7 .tall_c894 {
  color: #667eea;
}

.wrapper_purple_a887 .tall_c894 {
  color: #f5576c;
}

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

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

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

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

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

.logo-mini-728c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .copper_d076 {
    padding: var(--space-md);
  }
  
  .logo-mini-728c {
    padding: var(--space-md);
  }
  
  .section-d47e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.focused-e0c7,
.dropdown-8106,
.alert_fixed_7ca5,
.clean_e305 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.highlight-outer-2cc3 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.header_dd7d .tall_e942 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tag_blue_3fa6 .tall_e942 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.plasma-41a8 {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .sort-motion-50d9 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.south-611c {
  margin-top: var(--space-xxl);
}

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

.table-1c26 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pressed-3933 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.title-small-2c7a {
  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;
}

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

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

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

.overlay_huge_5ac5 {
  text-align: right;
}

.overlay_huge_5ac5 .photo-0f8f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.orange-7473 {
  background: #e8f5e9;
  color: #2e7d32;
}

.next-508f {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.info-77a6 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.focused-1404 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.top_0e9d[aria-expanded="true"] .focused-1404 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.dim-33f0 {
  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);
}

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

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

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

.form-9a15,
.last-beeb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-9a15 h4,
.last-beeb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.form-9a15 ul,
.last-beeb ul {
  list-style: none;
  padding: 0;
}

.form-9a15 li,
.last-beeb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.wide_2fd1 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.text-dim-0c77 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.glass_903f .chip_fa83 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.sort_white_11b1 a:hover {
  color: white;
}

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

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

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

.grid_fd84 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .inner_3356,
  .hero-0f70,
  .card_6668,
  .sort-motion-50d9,
  .focus-hard-7430,
  .caption-down-7434,
  .gallery_narrow_2689,
  .first-48ef {
    grid-template-columns: 1fr;
  }
  
  .link-fluid-3f13 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .shadow-action-fcdc {
    padding: var(--space-lg) 0;
  }
  
  .notification-f726 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .notification-f726 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tall_c894 {
    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;
  }
  
  .link-fluid-3f13 {
    grid-template-columns: 1fr;
  }
  
  .left-931d,
  .border-8086,
  .slider-e6f9 {
    flex-direction: column;
    width: 100%;
  }
  
  .tiny-80cf,
  .last_bde8,
  .left-931d .tall_c894,
  .border-8086 .tall_c894 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dynamic_b7e9 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .inner_e867 {
    font-size: 1.375rem;
  }
  
  .upper_706d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .fast-b5b3,
  .component-huge-e934,
  .up-7ab0,
  .paragraph_2059,
  .carousel-836b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .image_copper_2655 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .picture_hot_f7dc {
    gap: var(--space-xs);
  }
  
  .active_lite_06ce {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .module-a4a4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .prev_47ab {
    width: 150px;
    height: 150px;
  }
  
  .heading-2bcf {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .label_hovered_39cf,
  .content_c515,
  .left-931d,
  .column_ecd7,
  .notice_7bde,
  .out_941a,
  .summary_4261 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .shadow-action-fcdc {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5bd7 */
.ghost-box-m8 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
