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

.selected-f7f4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.soft_0c2c):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. */
.soft_0c2c,
header,
.wood-137f,
.tag-aa1a,
.content-56af,
.narrow-76b9,
.active-active-6577,
.sort_east_23e9,
.box-wood-8c5f {
  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
   ============================================ */
.soft_0c2c {
  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);
}

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

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

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

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

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

.search-outer-4256 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.old-ee89 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-6fa0 svg {
  flex-shrink: 0;
}

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

.texture-stale-cd4e: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);
}

.texture-stale-cd4e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.last_9a75[aria-expanded="true"] .full-62b2:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .old-ee89 {
    display: none;
  }
  
  .last_9a75 {
    display: flex;
  }
  
  .info_b901 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .banner-6fa0,
  .texture-stale-cd4e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .caption_9c28 {
    position: relative;
  }
  
  .left_457d {
    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;
  }
  
  .text_over_23ca[aria-expanded="true"] + .left_457d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .over-2ad7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .section_down_eb8d {
    gap: 8px;
  }
  
  .banner-6fa0 {
    display: none;
  }
  
  .texture-stale-cd4e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .search-outer-4256 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.paragraph-8738 svg {
  flex-shrink: 0;
}

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

.paragraph-8738 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.link-93f2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.link-93f2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.mask-37b8 {
  display: flex;
  gap: var(--space-sm);
}

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

.chip-0ba1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chip-0ba1 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.button-down-3558 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.breadcrumb-paper-c30e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .label_953e {
    grid-template-columns: 1fr;
  }
  
  .pro_cffe {
    font-size: 1.75rem;
  }
  
  .secondary_bright_1f82 {
    order: -1;
    max-width: 100%;
  }
  
  .breadcrumb-paper-c30e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pro_cffe {
    font-size: 1.5rem;
  }
  
  .aside_781a {
    font-size: 1rem;
  }
  
  .link-93f2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .breadcrumb-paper-c30e {
    max-width: 250px;
  }
}

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

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

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

.text-motion-1ac7 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.text-motion-1ac7:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.shade-large-78e7 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.modal-west-aa84 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev-58bc {
  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);
}

.wide-01cd {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_2629 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) {
  .element_red_67f0 {
    grid-template-columns: 1fr;
  }
  
  .wide-01cd {
    font-size: 1.75rem;
  }
  
  .top_ddb9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .wide-01cd {
    font-size: 1.5rem;
  }
  
  .top_ddb9 h3 {
    font-size: 1.375rem;
  }
  
  .top_ddb9 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.top_9688 {
  flex-shrink: 0;
}

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

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

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

.avatar-1fbe,
.iron-3b34,
.button-9133 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.avatar-1fbe thead,
.iron-3b34 thead {
  background: var(--color-primary);
  color: white;
}

.avatar-1fbe th,
.avatar-1fbe td,
.iron-3b34 th,
.iron-3b34 td,
.button-9133 th,
.button-9133 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .avatar-1fbe th,
  .avatar-1fbe td,
  .iron-3b34 th,
  .iron-3b34 td,
  .button-9133 th,
  .button-9133 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .avatar-1fbe,
  .iron-3b34,
  .button-9133 {
    min-width: 600px;
  }
}

.avatar-1fbe th,
.iron-3b34 th,
.button-9133 th {
  font-weight: 600;
}

.avatar-1fbe tbody tr:hover,
.iron-3b34 tbody tr:hover,
.button-9133 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.notification_4406 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.form-4e16 {
  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);
}

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

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

.popup-south-fc1c {
  list-style: none;
  padding: 0;
}

.popup-south-fc1c li {
  padding: var(--space-xs) 0;
}

.photo_6765 {
  color: #4caf50;
}

.widget-d2d7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-97cf {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.column_1661 .component-8767 {
  width: 100%;
  background: white;
}

.accent_c9a9 .component-8767 {
  color: #667eea;
}

.slow-ca46 .component-8767 {
  color: #f5576c;
}

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

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

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

.top-81c7 {
  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);
}

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

.popup-liquid-d207 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .soft-0a2e {
    padding: var(--space-md);
  }
  
  .popup-liquid-d207 {
    padding: var(--space-md);
  }
  
  .inner_cac0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.accent-911c,
.item_5083,
.shadow-fresh-de19,
.focused_59a5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.outline-huge-8709 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .outline-huge-8709 {
    font-size: 0.625rem;
  }
}

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

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

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

.menu-black-13df h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.article-short-d228 {
  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);
}

.frame_9c16 .article-short-d228 {
  background: #e8f5e9;
  color: var(--color-success);
}

.nav_ba72 .article-short-d228 {
  background: #fff3e0;
  color: var(--color-warning);
}

.footer-dynamic-58ab h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.footer-dynamic-58ab p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

.hot-46f1 {
  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);
}

.article_easy_7331 {
  text-align: center;
}

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

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

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

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

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

.accent-focused-2a9d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hovered-ee16 {
  border: 2px solid #4caf50;
}

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

.aside-outer-679c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.blue-be85 {
  text-align: right;
}

.blue-be85 .picture-small-ab46 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.carousel-rough-87d2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.middle-6e93 {
  background: #e3f2fd;
  color: #1565c0;
}

.lower-4d65 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.backdrop-inner-3756 {
  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);
}

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

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

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

.backdrop-lower-e74f strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.element-brown-33e8 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.item-c1c7[aria-expanded="true"] .element-brown-33e8 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.tiny-0bcf {
  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);
}

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

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

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

.gallery_fb94,
.main-6cd6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.gallery_fb94 h4,
.main-6cd6 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.gallery_fb94 ul,
.main-6cd6 ul {
  list-style: none;
  padding: 0;
}

.gallery_fb94 li,
.main-6cd6 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.column-easy-ee30 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.large_21b3 .mask-37b8 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.photo_soft_d1d6 a:hover {
  color: white;
}

.active-next-fd86 {
  list-style: none;
  padding: 0;
}

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

.active-next-fd86 a {
  color: #b0b0b0;
  text-decoration: none;
}

.active-next-fd86 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .soft_6a36 {
    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;
  }
  
  .pro_cffe {
    font-size: 2rem;
  }
  
  .wide-01cd {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .label_953e,
  .element_red_67f0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .caption_dark_5e56,
  .north_f54d,
  .main_feef,
  .hero_24f9,
  .label_044f,
  .row-upper-a67a,
  .background-e6ef,
  .input_e6ac {
    grid-template-columns: 1fr;
  }
  
  .tabs-easy-f3a8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .active-active-6577 {
    padding: var(--space-lg) 0;
  }
  
  .status_simple_251b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .status_simple_251b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .component-8767 {
    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;
  }
  
  .tabs-easy-f3a8 {
    grid-template-columns: 1fr;
  }
  
  .button-down-3558,
  .active_yellow_c602,
  .content_56e6 {
    flex-direction: column;
    width: 100%;
  }
  
  .shade-large-78e7,
  .modal-west-aa84,
  .button-down-3558 .component-8767,
  .active_yellow_c602 .component-8767 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pro_cffe {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .wide-01cd {
    font-size: 1.375rem;
  }
  
  .outline-cold-c43e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .disabled-b5c0,
  .alert_9345,
  .form_2e5b,
  .layout_5808,
  .article_stone_ca93 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .outline-huge-8709 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focus-549f {
    gap: var(--space-xs);
  }
  
  .paragraph-8738 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .form-4e16 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .disabled_a64a {
    width: 150px;
    height: 150px;
  }
  
  .element_warm_e7d4 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .soft_0c2c,
  .wood-137f,
  .button-down-3558,
  .text_white_b26e,
  .sort_east_23e9,
  .box-wood-8c5f,
  .last_9a75 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .active-active-6577 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 2d42 */
.shadow-element-f3 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
