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

.blue-7060:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.button-5a0d):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. */
.button-5a0d,
header,
.white-e8e8,
.selected_a26a,
.west_7a23,
.soft-a801,
.modal_short_a8dc,
.logo_stone_0237,
.message_18ab {
  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
   ============================================ */
.button-5a0d {
  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);
}

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

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

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

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

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

.east-60ce img {
  height: 36px;
  width: auto;
  display: block;
}

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

.focus_9da3 {
  flex: 1;
}

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

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

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

.summary-a370.focused_19f5 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-b2d6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.outline-9c9c[aria-expanded="true"] .rough_5652:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .focus_9da3 {
    display: none;
  }
  
  .outline-9c9c {
    display: flex;
  }
  
  .dirty-3633 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .article-b2d6,
  .lite-e5c2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hover_white_48b8 {
    position: relative;
  }
  
  .layout-a073 {
    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;
  }
  
  .modal_new_171d[aria-expanded="true"] + .layout-a073 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .west_9063 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tall_ccc2 {
    gap: 8px;
  }
  
  .article-b2d6 {
    display: none;
  }
  
  .lite-e5c2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .east-60ce img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.complex_64ca svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-bright-5e27 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.dark-2374 {
  position: relative;
  text-align: center;
}

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

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

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

.logo-easy-8d81 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .tertiary_c58b {
    grid-template-columns: 1fr;
  }
  
  .solid_dafb {
    font-size: 1.75rem;
  }
  
  .module_south_c7a9 {
    order: -1;
    max-width: 100%;
  }
  
  .dark-2374 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .solid_dafb {
    font-size: 1.5rem;
  }
  
  .dropdown-medium-08a0 {
    font-size: 1rem;
  }
  
  .carousel_top_7d63 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .dark-2374 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-dark-c714 {
  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);
}

.section-selected-11e5 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph_large_a8f7 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) {
  .mini_b5c3 {
    grid-template-columns: 1fr;
  }
  
  .section-selected-11e5 {
    font-size: 1.75rem;
  }
  
  .preview-cb9a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-selected-11e5 {
    font-size: 1.5rem;
  }
  
  .preview-cb9a h3 {
    font-size: 1.375rem;
  }
  
  .preview-cb9a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.silver_b29c {
  flex-shrink: 0;
}

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

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

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

.clean_ad02,
.dropdown-in-1148,
.badge-1088 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.clean_ad02 thead,
.dropdown-in-1148 thead {
  background: var(--color-primary);
  color: white;
}

.clean_ad02 th,
.clean_ad02 td,
.dropdown-in-1148 th,
.dropdown-in-1148 td,
.badge-1088 th,
.badge-1088 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .clean_ad02 th,
  .clean_ad02 td,
  .dropdown-in-1148 th,
  .dropdown-in-1148 td,
  .badge-1088 th,
  .badge-1088 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .clean_ad02,
  .dropdown-in-1148,
  .badge-1088 {
    min-width: 600px;
  }
}

.clean_ad02 th,
.dropdown-in-1148 th,
.badge-1088 th {
  font-weight: 600;
}

.clean_ad02 tbody tr:hover,
.dropdown-in-1148 tbody tr:hover,
.badge-1088 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.paragraph_silver_2f4e h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.motion-0c59 {
  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);
}

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

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

.short-51d3 {
  list-style: none;
  padding: 0;
}

.short-51d3 li {
  padding: var(--space-xs) 0;
}

.frame-2843 {
  color: #4caf50;
}

.container-bright-f162 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.small-24da {
  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;
}

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

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

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

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

.media-west-3d95 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_fast_55ce .logo-b2cf {
  width: 100%;
  background: white;
}

.info_edf1 .logo-b2cf {
  color: #667eea;
}

.nav_2e7c .logo-b2cf {
  color: #f5576c;
}

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

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

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

.wrapper_801a {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

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

@media (max-width: 768px) {
  .caption-silver-6435 {
    padding: var(--space-md);
  }
  
  .hot-ebb5 {
    padding: var(--space-md);
  }
  
  .sort_last_a476 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.main-699a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.image-8c8c,
.pattern-dim-4c25,
.gallery_c82b,
.tertiary-d154 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.outline-pink-1b3d {
  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) {
  .outline-pink-1b3d {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.popup-bottom-6c0d {
  border-color: var(--color-warning);
}

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

.gallery_e655 .clean_83d6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.popup-bottom-6c0d .clean_83d6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.footer-up-75c5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.bronze_cac4 {
  text-align: center;
}

.inner-6faa {
  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);
}

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

.inner-6faa .dim_44ea {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.label-9f37 {
  margin-bottom: var(--space-xl);
}

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

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

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

.overlay-simple-7ec4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

.pagination-lite-f7e5 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.fixed-b005 {
  text-align: right;
}

.fixed-b005 .in-86ea {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.image-fast-35e7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.avatar-a725 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.iron-5b7e {
  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);
}

.iron-5b7e:hover {
  background: var(--color-bg-alt);
}

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

.iron-5b7e[aria-expanded="true"] .heading-0916 {
  transform: rotate(180deg);
}

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

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

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

.shadow-bronze-f527 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.dropdown-d747,
.notification_plasma_5839 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dropdown-d747 h4,
.notification_plasma_5839 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dropdown-d747 ul,
.notification_plasma_5839 ul {
  list-style: none;
  padding: 0;
}

.dropdown-d747 li,
.notification_plasma_5839 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.box-4b9c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.badge-fast-1e34 {
  font-style: italic;
}

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

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

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

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

.banner-90b4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_pro_a6a6 .silver_5236 {
  color: #4caf50;
  font-size: 0.875rem;
}

.grid-bc4c {
  list-style: none;
  padding: 0;
}

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

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

.grid-bc4c a:hover {
  color: white;
}

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

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

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

.mini_8d99 a:hover {
  color: white;
}

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

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

.wrapper-5b21 a {
  color: #4caf50;
  text-decoration: none;
}

.banner-down-def6 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.main-short-e1b3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .texture-a627 {
    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;
  }
  
  .solid_dafb {
    font-size: 2rem;
  }
  
  .section-selected-11e5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tertiary_c58b,
  .mini_b5c3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .content_b76c,
  .progress_short_4085,
  .huge-9a3e,
  .heading_6013,
  .south-a45b,
  .info_6465,
  .gold_91e6,
  .hot-1020 {
    grid-template-columns: 1fr;
  }
  
  .mask_85c9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .modal_short_a8dc {
    padding: var(--space-lg) 0;
  }
  
  .slow_8b3f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .slow_8b3f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .logo-b2cf {
    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;
  }
  
  .mask_85c9 {
    grid-template-columns: 1fr;
  }
  
  .texture-bright-5e27,
  .banner-90b4,
  .thick-5ba0 {
    flex-direction: column;
    width: 100%;
  }
  
  .message_34f5,
  .heading-3107,
  .texture-bright-5e27 .logo-b2cf,
  .banner-90b4 .logo-b2cf {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .solid_dafb {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .section-selected-11e5 {
    font-size: 1.375rem;
  }
  
  .tag_197f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .stone_689c,
  .yellow-d904,
  .mask_019f,
  .north-0256,
  .video-e250 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .outline-pink-1b3d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .detail_south_2275 {
    gap: var(--space-xs);
  }
  
  .complex_64ca {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .motion-0c59 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .inner-6faa {
    width: 150px;
    height: 150px;
  }
  
  .pattern_1df0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button-5a0d,
  .white-e8e8,
  .texture-bright-5e27,
  .yellow_0a12,
  .logo_stone_0237,
  .message_18ab,
  .outline-9c9c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .modal_short_a8dc {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 8e50 */
.shadow-element-f4 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
