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

.breadcrumb-orange-c148:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.picture_3764):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. */
.picture_3764,
header,
.picture-fresh-c5ac,
.fluid-3260,
.slider-hard-be4d,
.nav_10d9,
.red-8554,
.carousel_7b48,
.background-6991 {
  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
   ============================================ */
.picture_3764 {
  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);
}

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

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

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

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

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

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

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

.mask-lite-061c {
  flex: 1;
}

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

.shade-clean-3182 {
  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);
}

.shade-clean-3182:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.shade-clean-3182.center_27dc {
  background: var(--color-primary);
  color: white;
}

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

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

.next-ba53 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.module-wide-613e {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.lower-9492 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .mask-lite-061c::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .mask-lite-061c.pro-c073 {
    display: block;
    right: 0;
  }
  
  .motion-ab54 {
    flex-direction: column;
    gap: 0;
  }
  
  .shade-clean-3182 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .mask-lite-061c::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;
  }
  
  .mask-lite-061c.pro-c073::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .mask-lite-061c {
    display: none;
  }
  
  .column_e857 {
    display: flex;
  }
  
  .status-9276 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .lower-9492,
  .breadcrumb_thick_3a05 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .modal_lower_f28c {
    position: relative;
  }
  
  .description-c27e {
    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;
  }
  
  .next-ba53[aria-expanded="true"] + .description-c27e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gallery-pink-e2ab {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .module-wide-613e {
    gap: 8px;
  }
  
  .lower-9492 {
    display: none;
  }
  
  .breadcrumb_thick_3a05 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .icon_55a8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.tertiary-narrow-e1b9 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tertiary-narrow-e1b9 svg {
  flex-shrink: 0;
}

.tertiary-narrow-e1b9 a {
  color: var(--color-primary);
  text-decoration: none;
}

.tertiary-narrow-e1b9 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.image-tiny-4f62 a {
  color: var(--color-primary);
  text-decoration: none;
}

.image-tiny-4f62 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.active-left-7b6b {
  display: flex;
  gap: var(--space-sm);
}

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

.medium-715c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.medium-715c strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .grid-f0f7 {
    grid-template-columns: 1fr;
  }
  
  .photo_a5c9 {
    font-size: 1.75rem;
  }
  
  .label_0e8b {
    order: -1;
    max-width: 100%;
  }
  
  .east_5ba6 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .photo_a5c9 {
    font-size: 1.5rem;
  }
  
  .liquid_ecfd {
    font-size: 1rem;
  }
  
  .image-tiny-4f62 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .east_5ba6 {
    max-width: 250px;
  }
}

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

.link-tiny-0461 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.tall-5b3e {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-6a64 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_4950 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) {
  .list_bb0f {
    grid-template-columns: 1fr;
  }
  
  .logo_advanced_9532 {
    font-size: 1.75rem;
  }
  
  .hard_efa8 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.picture_d5dc {
  flex-shrink: 0;
}

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

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

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

.media-glass-189d,
.form-short-2d67,
.pagination_82f9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media-glass-189d thead,
.form-short-2d67 thead {
  background: var(--color-primary);
  color: white;
}

.media-glass-189d th,
.media-glass-189d td,
.form-short-2d67 th,
.form-short-2d67 td,
.pagination_82f9 th,
.pagination_82f9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .media-glass-189d th,
  .media-glass-189d td,
  .form-short-2d67 th,
  .form-short-2d67 td,
  .pagination_82f9 th,
  .pagination_82f9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .media-glass-189d,
  .form-short-2d67,
  .pagination_82f9 {
    min-width: 600px;
  }
}

.media-glass-189d th,
.form-short-2d67 th,
.pagination_82f9 th {
  font-weight: 600;
}

.media-glass-189d tbody tr:hover,
.form-short-2d67 tbody tr:hover,
.pagination_82f9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.text_light_cfa1 h4 {
  color: white;
}

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

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

.overlay-3123:last-child {
  border-bottom: none;
}

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

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

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

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

.right-9796:hover {
  text-decoration: underline;
}

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

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

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

.liquid-7fe8 {
  font-weight: 600;
  color: white;
}

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

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

.title-last-f12b {
  color: #4caf50;
}

.narrow-7ef7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .photo-dim-92d7 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.texture_bdc9 .element_pink_12d9 {
  width: 100%;
  background: white;
}

.search-cold-3cef .element_pink_12d9 {
  color: #667eea;
}

.component-cdaf .element_pink_12d9 {
  color: #f5576c;
}

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

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

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

.chip-394c {
  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);
}

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

.gas-77b1 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .hero-acb5 {
    padding: var(--space-md);
  }
  
  .gas-77b1 {
    padding: var(--space-md);
  }
  
  .clean_4ac9 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.border-soft-ce25 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.pro-a6da,
.pressed_75f1,
.link_gas_2891,
.up_4f48 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph_red_565d .dim_1844 {
  background: #e8f5e9;
  color: var(--color-success);
}

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

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

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

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

.filter-steel-bba9 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.feature-old-0ecf {
  margin-top: var(--space-xxl);
}

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

.row-d2fc {
  text-align: center;
}

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

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

.tall_44e3 .liquid-7fe8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.search-93b4 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.label-inner-498b {
  margin-bottom: var(--space-xl);
}

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

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

.prev-0e8b {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.complex-2f7f {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.summary-8b65 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.lite-5d46 {
  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;
}

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

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

.alert-hovered-0d54 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.media_bronze_c5c4 {
  text-align: right;
}

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

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

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

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

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

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

.surface-wide-52c7 {
  background: #e8f5e9;
  color: #2e7d32;
}

.new-a5a4 {
  background: #e3f2fd;
  color: #1565c0;
}

.item-df49 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.hover-fast-35e3 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.wrapper-06e6 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.texture_a941[aria-expanded="true"] .wrapper-06e6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary_ac9d h4,
.notification_2292 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.primary_ac9d ul,
.notification_2292 ul {
  list-style: none;
  padding: 0;
}

.primary_ac9d li,
.notification_2292 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.label_action_a597 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny-3456 .active-left-7b6b {
  color: #4caf50;
  font-size: 0.875rem;
}

.footer-large-a044 {
  list-style: none;
  padding: 0;
}

.footer-large-a044 li {
  margin-bottom: var(--space-xs);
}

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

.footer-large-a044 a:hover {
  color: white;
}

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

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

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

.footer_steel_2c58 a:hover {
  color: white;
}

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

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

.nav-dim-de43 a {
  color: #4caf50;
  text-decoration: none;
}

.up-3d31 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.paper-14d0:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .middle-f656 {
    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;
  }
  
  .photo_a5c9 {
    font-size: 2rem;
  }
  
  .logo_advanced_9532 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .grid-f0f7,
  .list_bb0f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .picture_90f1,
  .huge-21aa,
  .photo-dim-92d7,
  .breadcrumb-full-77dc,
  .dynamic-9ed8,
  .red_cbf5,
  .badge_8069,
  .image_af97 {
    grid-template-columns: 1fr;
  }
  
  .soft-4de0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .red-8554 {
    padding: var(--space-lg) 0;
  }
  
  .dim_23c1 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dim_23c1 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .element_pink_12d9 {
    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;
  }
  
  .soft-4de0 {
    grid-template-columns: 1fr;
  }
  
  .module-be7b,
  .carousel_silver_eb01,
  .modal_action_1d7e {
    flex-direction: column;
    width: 100%;
  }
  
  .tall-5b3e,
  .secondary-8177,
  .module-be7b .element_pink_12d9,
  .carousel_silver_eb01 .element_pink_12d9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .photo_a5c9 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo_advanced_9532 {
    font-size: 1.375rem;
  }
  
  .static_8da9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dim-15c2,
  .icon_liquid_0780,
  .card_top_337c,
  .dirty-5972,
  .fluid_ea99 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget_wide_74e1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tabs-e021 {
    gap: var(--space-xs);
  }
  
  .tertiary-narrow-e1b9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .box_f5a1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tall_44e3 {
    width: 150px;
    height: 150px;
  }
  
  .down-e7d6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture_3764,
  .picture-fresh-c5ac,
  .module-be7b,
  .upper-d9a2,
  .carousel_7b48,
  .background-6991,
  .column_e857 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .red-8554 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: acda */
.ghost-box-r2 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
