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

.hero_8200:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.modal_wide_bac3):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. */
.modal_wide_bac3,
header,
.carousel-dark-625b,
.blue_f677,
.tag_small_e103,
.banner-huge-5e45,
.easy_d58f,
.shade-5f04,
.fast_c551 {
  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
   ============================================ */
.modal_wide_bac3 {
  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);
}

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

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

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

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

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

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

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

.sidebar_6788 {
  flex: 1;
}

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

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

.texture-7bd8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.texture-7bd8.message_stale_ea34 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper-23fc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.easy-09e6[aria-expanded="true"] .summary_dim_e679:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .sidebar_6788 {
    display: none;
  }
  
  .easy-09e6 {
    display: flex;
  }
  
  .header-4277 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .copper-23fc,
  .pattern_up_2276 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .plasma_5ad6 {
    position: relative;
  }
  
  .in_2a1b {
    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;
  }
  
  .in_4240[aria-expanded="true"] + .in_2a1b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .accent_5a30 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .avatar_dynamic_08b8 {
    gap: 8px;
  }
  
  .copper-23fc {
    display: none;
  }
  
  .pattern_up_2276 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .shadow-dim-a7b4 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.label-8519 svg {
  flex-shrink: 0;
}

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

.label-8519 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.tag-1f15 a {
  color: var(--color-primary);
  text-decoration: none;
}

.tag-1f15 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-dcc2 {
  position: relative;
  text-align: center;
}

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

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

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

.old-3403 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .list_d4fb {
    grid-template-columns: 1fr;
  }
  
  .texture_huge_ab9b {
    font-size: 1.75rem;
  }
  
  .disabled_first_54b1 {
    order: -1;
    max-width: 100%;
  }
  
  .wrapper-dcc2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .texture_huge_ab9b {
    font-size: 1.5rem;
  }
  
  .mask_fresh_c65b {
    font-size: 1rem;
  }
  
  .tag-1f15 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wrapper-dcc2 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.dropdown-bottom-518d {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

.element-dynamic-8b73 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.detail-pro-dc38 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge-73cb {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.huge-73cb 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) {
  .solid_30c9 {
    grid-template-columns: 1fr;
  }
  
  .slider_liquid_9b42 {
    font-size: 1.75rem;
  }
  
  .under_f621 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.tabs-87ea {
  flex-shrink: 0;
}

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

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

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

.button-ace7,
.stale-0028,
.smooth-aa60 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.button-ace7 thead,
.stale-0028 thead {
  background: var(--color-primary);
  color: white;
}

.button-ace7 th,
.button-ace7 td,
.stale-0028 th,
.stale-0028 td,
.smooth-aa60 th,
.smooth-aa60 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .button-ace7 th,
  .button-ace7 td,
  .stale-0028 th,
  .stale-0028 td,
  .smooth-aa60 th,
  .smooth-aa60 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .button-ace7,
  .stale-0028,
  .smooth-aa60 {
    min-width: 600px;
  }
}

.button-ace7 th,
.stale-0028 th,
.smooth-aa60 th {
  font-weight: 600;
}

.button-ace7 tbody tr:hover,
.stale-0028 tbody tr:hover,
.smooth-aa60 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.media-d127 h4 {
  color: white;
}

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

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

.primary-5304:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.button-complex-6358 {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.list_376e {
  color: #4caf50;
}

.cool-9c52 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-1e98 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.hidden-091d .pressed_7e7b {
  width: 100%;
  background: white;
}

.paper-5792 .pressed_7e7b {
  color: #667eea;
}

.avatar-51ca .pressed_7e7b {
  color: #f5576c;
}

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

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

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

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

.message-yellow-f853 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.footer-cool-4e17 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .message-yellow-f853 {
    padding: var(--space-md);
  }
  
  .footer-cool-4e17 {
    padding: var(--space-md);
  }
  
  .old_9207 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.button_out_1b49,
.huge-9126,
.top-2a6e,
.dropdown_tall_08a5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.large-78b8:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.glass_2fb7 .video_d768 {
  background: #e8f5e9;
  color: var(--color-success);
}

.thumbnail_4463 .video_d768 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.element-liquid-04b0 {
  margin-top: var(--space-xxl);
}

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

.column-ee50 {
  text-align: center;
}

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

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

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

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

.south-9f54 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.container-center-8ef3 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.panel-soft-e3ec {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.tertiary-thick-dfd5 {
  text-align: right;
}

.tertiary-thick-dfd5 .carousel-fd15 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.media-gold-4a97 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.accent-hovered-53da {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.dynamic-9a03 {
  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);
}

.dynamic-9a03:hover {
  background: var(--color-bg-alt);
}

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

.dynamic-9a03[aria-expanded="true"] .hidden_fresh_0ce2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper_17a9,
.lower-f80b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.wrapper_17a9 h4,
.lower-f80b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.wrapper_17a9 ul,
.lower-f80b ul {
  list-style: none;
  padding: 0;
}

.wrapper_17a9 li,
.lower-f80b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.down-d0a8 {
  font-style: italic;
}

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

.middle-0cb2 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption_static_9a64 .dirty_9ecc {
  color: #4caf50;
  font-size: 0.875rem;
}

.mini-4839 {
  list-style: none;
  padding: 0;
}

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

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

.mini-4839 a:hover {
  color: white;
}

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

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

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

.alert_cold_c0a7 a:hover {
  color: white;
}

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

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

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

.info-solid-fee4 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .tall-8826 {
    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;
  }
  
  .texture_huge_ab9b {
    font-size: 2rem;
  }
  
  .slider_liquid_9b42 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .list_d4fb,
  .solid_30c9 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .item-cold-1c39,
  .carousel_prev_3e15,
  .liquid-49ab,
  .popup-wide-bbc5,
  .sidebar_steel_7a50,
  .full-565a,
  .accordion-94de,
  .pressed-4b58 {
    grid-template-columns: 1fr;
  }
  
  .fresh-4c93 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .easy_d58f {
    padding: var(--space-lg) 0;
  }
  
  .container_easy_177b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .container_easy_177b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pressed_7e7b {
    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;
  }
  
  .fresh-4c93 {
    grid-template-columns: 1fr;
  }
  
  .summary_6261,
  .picture-f788,
  .stale_f7ef {
    flex-direction: column;
    width: 100%;
  }
  
  .dropdown-bottom-518d,
  .aside_3150,
  .summary_6261 .pressed_7e7b,
  .picture-f788 .pressed_7e7b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .texture_huge_ab9b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slider_liquid_9b42 {
    font-size: 1.375rem;
  }
  
  .down_5843 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .cool_3b9e,
  .chip-basic-b6db,
  .grid-active-af14,
  .small-0943,
  .fluid_31bf {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .overlay-hot-9633 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .secondary-8918 {
    gap: var(--space-xs);
  }
  
  .label-8519 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .button-complex-6358 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hidden_cb89 {
    width: 150px;
    height: 150px;
  }
  
  .hidden-fast-c86c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .modal_wide_bac3,
  .carousel-dark-625b,
  .summary_6261,
  .middle-0cb2,
  .shade-5f04,
  .fast_c551,
  .easy-09e6 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .easy_d58f {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e412 */
.widget-item-w2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
