/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.down-85d7 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.down-85d7:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.popup_77c8):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. */
.popup_77c8,
header,
.tall-b74e,
.surface-cool-e497,
.footer-mini-d033,
.footer-solid-8ac7,
.table-dynamic-7e3d,
.pattern_simple_40d4,
.search_easy_599d {
  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
   ============================================ */
.popup_77c8 {
  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);
}

.short-fdd2 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.gradient-bright-ccdc {
  flex: 1;
}

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

.highlight-short-034d {
  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);
}

.highlight-short-034d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.highlight-short-034d.dynamic_3326 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pagination-light-50ad {
  position: relative;
}

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

.slider-64b9 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.middle-6d2b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.medium-a626[aria-expanded="true"] .avatar-west-a3d6:nth-child(2) {
  opacity: 0;
}

.medium-a626[aria-expanded="true"] .avatar-west-a3d6:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .gradient-bright-ccdc::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .gradient-bright-ccdc.old-9adf {
    display: block;
    right: 0;
  }
  
  .list-orange-9ae7 {
    flex-direction: column;
    gap: 0;
  }
  
  .highlight-short-034d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .gradient-bright-ccdc::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;
  }
  
  .gradient-bright-ccdc.old-9adf::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .gradient-bright-ccdc {
    display: none;
  }
  
  .medium-a626 {
    display: flex;
  }
  
  .tabs_bright_5513 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .middle-6d2b,
  .thumbnail_easy_0660 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pagination-light-50ad {
    position: relative;
  }
  
  .media-d109 {
    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;
  }
  
  .slider-64b9[aria-expanded="true"] + .media-d109 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .progress_c24d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pagination_bronze_fe3c {
    gap: 8px;
  }
  
  .middle-6d2b {
    display: none;
  }
  
  .thumbnail_easy_0660 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .carousel_3e12 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.component_aec5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

.highlight-solid-299c {
  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) {
  .highlight-solid-299c {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .highlight-solid-299c {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

.modal-center-8304 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-center-8304 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.article-6a2e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hard_d19a {
    grid-template-columns: 1fr;
  }
  
  .highlight-solid-299c {
    font-size: 1.75rem;
  }
  
  .short_0477 {
    order: -1;
    max-width: 100%;
  }
  
  .article-6a2e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .highlight-solid-299c {
    font-size: 1.5rem;
  }
  
  .summary-207a {
    font-size: 1rem;
  }
  
  .blue_0241 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .article-6a2e {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.info-fresh-ede4 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.module-basic-1f29:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

.shade-6841 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.table-dynamic-7e3d {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface_97a5 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) {
  .disabled_e374 {
    grid-template-columns: 1fr;
  }
  
  .alert_old_32df {
    font-size: 1.75rem;
  }
  
  .badge_dynamic_57de {
    max-width: 100%;
  }
}

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

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

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

.badge-liquid-d3c3 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.pressed-5aec {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.photo-green-31f5 {
  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;
}

.article-02cb {
  flex-shrink: 0;
}

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

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

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

.feature-stone-26fb,
.alert_c2ab,
.dropdown_0029 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-stone-26fb thead,
.alert_c2ab thead {
  background: var(--color-primary);
  color: white;
}

.feature-stone-26fb th,
.feature-stone-26fb td,
.alert_c2ab th,
.alert_c2ab td,
.dropdown_0029 th,
.dropdown_0029 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .feature-stone-26fb th,
  .feature-stone-26fb td,
  .alert_c2ab th,
  .alert_c2ab td,
  .dropdown_0029 th,
  .dropdown_0029 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .feature-stone-26fb,
  .alert_c2ab,
  .dropdown_0029 {
    min-width: 600px;
  }
}

.feature-stone-26fb th,
.alert_c2ab th,
.dropdown_0029 th {
  font-weight: 600;
}

.feature-stone-26fb tbody tr:hover,
.alert_c2ab tbody tr:hover,
.dropdown_0029 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.gallery_hard_2273 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_1649 {
  color: #4caf50;
}

.plasma_01d6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.icon-pink-0cfe {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed-c87e .button-7a4e {
  width: 100%;
  background: white;
}

.yellow-fb83 .button-7a4e {
  color: #667eea;
}

.dark_3660 .button-7a4e {
  color: #f5576c;
}

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

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

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

.chip-33b2 {
  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);
}

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

.banner-short-9237 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .tiny_45d0 {
    padding: var(--space-md);
  }
  
  .banner-short-9237 {
    padding: var(--space-md);
  }
  
  .aside-6231 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.input-dim-7eaa ol,
.input-dim-7eaa ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.input-dim-7eaa li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.search_next_07db,
.paper-c9ea,
.filter-purple-880e,
.container-7aba {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-soft-9ef2 {
  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);
}

.info_a6dc .form-soft-9ef2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.preview_2a0e .form-soft-9ef2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.dark-6f64 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.banner-iron-1d51 {
  margin-top: var(--space-xxl);
}

.aside-red-39cc {
  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);
}

.highlight_tiny_897c {
  text-align: center;
}

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

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

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

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

.hero-89cb p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-dirty-bf43 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.popup_d935 {
  text-align: right;
}

.popup_d935 .wide_b7ef {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.accent-lite-ccd4 {
  background: #e3f2fd;
  color: #1565c0;
}

.tall-61f7 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-c914[aria-expanded="true"] .container_stale_cef5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-c41f,
.filter-thick-8ee5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.menu-c41f h4,
.filter-thick-8ee5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.menu-c41f ul,
.filter-thick-8ee5 ul {
  list-style: none;
  padding: 0;
}

.menu-c41f li,
.filter-thick-8ee5 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.caption-2ea9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.pagination-old-c2d5 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.new-e5e0 .container_ba32 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hidden-dd01 {
  list-style: none;
  padding: 0;
}

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

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

.hidden-dd01 a:hover {
  color: white;
}

.cold-8e7b {
  list-style: none;
  padding: 0;
}

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

.cold-8e7b a {
  color: #b0b0b0;
  text-decoration: none;
}

.cold-8e7b a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .chip_wide_2c5c {
    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;
  }
  
  .highlight-solid-299c {
    font-size: 2rem;
  }
  
  .alert_old_32df {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hard_d19a,
  .disabled_e374 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .badge_88ad,
  .message-top-5484,
  .gallery_f3f4,
  .next-d4b4,
  .menu_static_dc99,
  .green_6e2f,
  .item-last-0d4b,
  .inner-9644 {
    grid-template-columns: 1fr;
  }
  
  .tall-0807 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .table-dynamic-7e3d {
    padding: var(--space-lg) 0;
  }
  
  .shade-6841 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shade-6841 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .button-7a4e {
    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;
  }
  
  .tall-0807 {
    grid-template-columns: 1fr;
  }
  
  .heading_bottom_7c0d,
  .nav-3583,
  .huge_33a5 {
    flex-direction: column;
    width: 100%;
  }
  
  .tooltip_fcf3,
  .info-fresh-ede4,
  .heading_bottom_7c0d .button-7a4e,
  .nav-3583 .button-7a4e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .highlight-solid-299c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .alert_old_32df {
    font-size: 1.375rem;
  }
  
  .search_action_7808 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .module-basic-1f29,
  .middle_7083,
  .sidebar_fast_d94f,
  .mask_60f5,
  .yellow_1e9f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sort-fede {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .over_79ae {
    gap: var(--space-xs);
  }
  
  .component_aec5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .liquid_86e5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .border_3813 {
    width: 150px;
    height: 150px;
  }
  
  .first-d518 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .popup_77c8,
  .tall-b74e,
  .heading_bottom_7c0d,
  .module_8fb3,
  .pattern_simple_40d4,
  .search_easy_599d,
  .medium-a626 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .table-dynamic-7e3d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 96e9 */
.shadow-element-d7 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.1;
}
