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

.header-d64f:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .warm-8b39 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .warm-8b39 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.message_fixed_a605):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. */
.message_fixed_a605,
header,
.hero-e373,
.dropdown_medium_95ad,
.thumbnail-00e1,
.wrapper_clean_7d9c,
.input-stale-cebd,
.avatar_cb51,
.main-d46b {
  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
   ============================================ */
.message_fixed_a605 {
  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);
}

.gas-1e7b {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.nav-aa55 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.basic_98f0 {
  flex: 1;
}

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

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

.avatar-3662:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.avatar-3662.block-iron-1407 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.next-fcf3 {
  position: relative;
}

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

.pro-3ec4 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.footer-brown-a4ff svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.footer-last-7603[aria-expanded="true"] .cold-ff94:nth-child(2) {
  opacity: 0;
}

.footer-last-7603[aria-expanded="true"] .cold-ff94:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .basic_98f0 {
    display: none;
  }
  
  .footer-last-7603 {
    display: flex;
  }
  
  .fresh_1f60 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .footer-brown-a4ff,
  .pro_665c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .next-fcf3 {
    position: relative;
  }
  
  .sort_d47e {
    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;
  }
  
  .pro-3ec4[aria-expanded="true"] + .sort_d47e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pressed_6469 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .header_9860 {
    gap: 8px;
  }
  
  .footer-brown-a4ff {
    display: none;
  }
  
  .pro_665c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .nav-aa55 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.pink_0c03 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-fast-a351 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.main-right-3483 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-21a0 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .stone-6e4f {
    grid-template-columns: 1fr;
  }
  
  .content-a496 {
    font-size: 1.75rem;
  }
  
  .main-right-3483 {
    order: -1;
    max-width: 100%;
  }
  
  .gradient-21a0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .content-a496 {
    font-size: 1.5rem;
  }
  
  .icon_yellow_5d53 {
    font-size: 1rem;
  }
  
  .search_a2e8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gradient-21a0 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.widget-824a {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

.message-pressed-91c0 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.list-motion-7e92 {
  list-style: none;
  counter-reset: toc-counter;
}

.list-motion-7e92 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.list-motion-7e92 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);
}

.list-motion-7e92 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;
}

.list-motion-7e92 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.filter-rough-5840 {
  background: var(--color-bg-section);
}

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

.chip-copper-a1ab {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.first_842b 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) {
  .content-6d8d {
    grid-template-columns: 1fr;
  }
  
  .background_outer_0507 {
    font-size: 1.75rem;
  }
  
  .avatar_31f0 {
    max-width: 100%;
  }
}

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

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

.paper-92f7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.card-544c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.dark-8f8d {
  flex-shrink: 0;
}

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

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

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

.element-1b61,
.selected_bee9,
.gradient-basic-0191 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.element-1b61 thead,
.selected_bee9 thead {
  background: var(--color-primary);
  color: white;
}

.element-1b61 th,
.element-1b61 td,
.selected_bee9 th,
.selected_bee9 td,
.gradient-basic-0191 th,
.gradient-basic-0191 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .element-1b61 th,
  .element-1b61 td,
  .selected_bee9 th,
  .selected_bee9 td,
  .gradient-basic-0191 th,
  .gradient-basic-0191 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .element-1b61,
  .selected_bee9,
  .gradient-basic-0191 {
    min-width: 600px;
  }
}

.element-1b61 th,
.selected_bee9 th,
.gradient-basic-0191 th {
  font-weight: 600;
}

.element-1b61 tbody tr:hover,
.selected_bee9 tbody tr:hover,
.gradient-basic-0191 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption_09da h4 {
  color: white;
}

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

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

.nav-new-5aa6:last-child {
  border-bottom: none;
}

.nav-new-5aa6 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.nav-new-5aa6 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.progress-f5ef:hover {
  text-decoration: underline;
}

.info-action-4ee3 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.background-30be {
  font-weight: 600;
  color: white;
}

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

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

.sort_complex_07aa {
  color: #4caf50;
}

.medium_f765 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search_922a .text_e5a5 {
  width: 100%;
  background: white;
}

.thick_d867 .text_e5a5 {
  color: #667eea;
}

.middle_77ae .text_e5a5 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .background-4307 {
    padding: var(--space-md);
  }
  
  .gold_2a58 {
    padding: var(--space-md);
  }
  
  .tertiary-brown-5f32 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.tertiary-brown-5f32 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.hovered-0a87,
.gallery_purple_bcdd,
.feature_advanced_7640,
.upper-532f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.alert-77aa:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.description-outer-7368 {
  border-color: var(--color-success);
}

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

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

.description-outer-7368 .wood-d77b {
  background: #e8f5e9;
  color: var(--color-success);
}

.table-b3b1 .wood-d77b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-2ace {
  margin-top: var(--space-xxl);
}

.title-1a5d {
  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);
}

.focused-fea6 {
  text-align: center;
}

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

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

.hard_b459 .background-30be {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.action-24d9 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.logo-under-b83d {
  margin-bottom: var(--space-xl);
}

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

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

.tag-8c5c {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-ab56 {
  text-align: right;
}

.aside-ab56 .accent-5ae8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.medium-1cb9 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.row_green_eb7f[aria-expanded="true"] .medium-1cb9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.wrapper-next-984d {
  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);
}

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

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

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

.box_e351,
.cool-900c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.box_e351 h4,
.cool-900c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.box_e351 ul,
.cool-900c ul {
  list-style: none;
  padding: 0;
}

.box_e351 li,
.cool-900c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.description_hard_edb9 {
  font-style: italic;
}

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

.notification-new-51ce {
  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;
}

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

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

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

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

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

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

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

.border-copper-d24e {
  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);
}

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

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

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

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

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

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

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

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

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

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

.action_769a .component-fast-a351 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.thumbnail_silver_0bdd a:hover {
  color: white;
}

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

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

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

.preview_dbd2 a:hover {
  color: white;
}

.logo-68c9 {
  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);
}

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

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

.sort-be02 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .logo-68c9 {
    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;
  }
  
  .content-a496 {
    font-size: 2rem;
  }
  
  .background_outer_0507 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .stone-6e4f,
  .content-6d8d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .surface-39bb,
  .gradient_under_5ed1,
  .summary_simple_05a4,
  .right_b681,
  .feature-action-5e97,
  .footer-short-b534,
  .notice_middle_251d,
  .block-9cb7 {
    grid-template-columns: 1fr;
  }
  
  .cold_127d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .input-stale-cebd {
    padding: var(--space-lg) 0;
  }
  
  .list-motion-7e92 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .list-motion-7e92 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .text_e5a5 {
    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;
  }
  
  .cold_127d {
    grid-template-columns: 1fr;
  }
  
  .glass-1396,
  .layout_949b,
  .hovered_6405 {
    flex-direction: column;
    width: 100%;
  }
  
  .widget-824a,
  .surface_6cf7,
  .glass-1396 .text_e5a5,
  .layout_949b .text_e5a5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .content-a496 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .background_outer_0507 {
    font-size: 1.375rem;
  }
  
  .image_pro_735e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .notification-903e,
  .west-d667,
  .carousel-glass-2c61,
  .huge_995d,
  .accordion_e570 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .thumbnail-liquid-fa10 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .image_4f03 {
    gap: var(--space-xs);
  }
  
  .pink_0c03 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion_yellow_e6a0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hard_b459 {
    width: 150px;
    height: 150px;
  }
  
  .black_ade9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .message_fixed_a605,
  .hero-e373,
  .glass-1396,
  .notification-new-51ce,
  .avatar_cb51,
  .main-d46b,
  .footer-last-7603 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .input-stale-cebd {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9882 */
.ghost-box-n9 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
