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

.middle-134e:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.medium_e61e):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. */
.medium_e61e,
header,
.surface_iron_9364,
.outline_f727,
.gas_34f2,
.static-54bd,
.card_19ce,
.button-a4a3,
.tertiary_bottom_bbd5 {
  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
   ============================================ */
.medium_e61e {
  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);
}

.first-0d14 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.component-liquid-0f63 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.component-iron-2f4e {
  flex: 1;
}

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

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

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

.outline_easy_f376.panel-2a43 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.avatar-motion-3e4c {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.focus-slow-3840 {
  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;
}

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

.focus-slow-3840 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .component-iron-2f4e {
    display: none;
  }
  
  .right-d438 {
    display: flex;
  }
  
  .wood_8ad7 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .focus-slow-3840,
  .north_c073 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .avatar-motion-3e4c {
    position: relative;
  }
  
  .section-f30b {
    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;
  }
  
  .steel_24e8[aria-expanded="true"] + .section-f30b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notice_4424 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .prev_6a9e {
    gap: 8px;
  }
  
  .focus-slow-3840 {
    display: none;
  }
  
  .north_c073 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .component-liquid-0f63 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.thumbnail-6882 svg {
  flex-shrink: 0;
}

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

.thumbnail-6882 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-out-c287 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.out-837b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.accent-4f86 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

.info-fast-7c31 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .badge-9375 {
    grid-template-columns: 1fr;
  }
  
  .video-d0bc {
    font-size: 1.75rem;
  }
  
  .accent-4f86 {
    order: -1;
    max-width: 100%;
  }
  
  .photo_fixed_6ddd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .video-d0bc {
    font-size: 1.5rem;
  }
  
  .photo_first_bfd2 {
    font-size: 1rem;
  }
  
  .white_d7cd {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .photo_fixed_6ddd {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.status-new-cb24 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden_1969 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) {
  .accordion_black_e0f3 {
    grid-template-columns: 1fr;
  }
  
  .widget_south_c728 {
    font-size: 1.75rem;
  }
  
  .dropdown_dynamic_3542 {
    max-width: 100%;
  }
}

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

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

.right-62c4 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.notification-pressed-4825 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.gold_c323 {
  flex-shrink: 0;
}

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

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

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

.brown-09b6,
.active_8b64,
.summary_de2c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.brown-09b6 thead,
.active_8b64 thead {
  background: var(--color-primary);
  color: white;
}

.brown-09b6 th,
.brown-09b6 td,
.active_8b64 th,
.active_8b64 td,
.summary_de2c th,
.summary_de2c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .brown-09b6 th,
  .brown-09b6 td,
  .active_8b64 th,
  .active_8b64 td,
  .summary_de2c th,
  .summary_de2c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .brown-09b6,
  .active_8b64,
  .summary_de2c {
    min-width: 600px;
  }
}

.brown-09b6 th,
.active_8b64 th,
.summary_de2c th {
  font-weight: 600;
}

.brown-09b6 tbody tr:hover,
.active_8b64 tbody tr:hover,
.summary_de2c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.down_2876 h4 {
  color: white;
}

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

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

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

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

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

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

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

.title-dark-fcc6:hover {
  text-decoration: underline;
}

.notification-new-6ea5 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.banner-93f8 {
  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);
}

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

.backdrop-solid-d119 {
  font-weight: 600;
  color: white;
}

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

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

.outer-2e14 {
  color: #4caf50;
}

.overlay-0748 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.easy-58be .text_mini_2b73 {
  width: 100%;
  background: white;
}

.progress-c98f .text_mini_2b73 {
  color: #667eea;
}

.preview_tall_421e .text_mini_2b73 {
  color: #f5576c;
}

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

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

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

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

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

.out-862f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .west_87dd {
    padding: var(--space-md);
  }
  
  .out-862f {
    padding: var(--space-md);
  }
  
  .message-4116 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.active-8df7,
.over-3138,
.hero-outer-28d6,
.sort_dirty_e084 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

@media (max-width: 480px) {
  .thumbnail-ec7d {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.block-blue-6a39 {
  border-color: var(--color-warning);
}

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

.picture-b685 .panel-fb58 {
  background: #e8f5e9;
  color: var(--color-success);
}

.block-blue-6a39 .panel-fb58 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.bright-63f1 {
  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);
}

.tooltip_upper_a0eb {
  text-align: center;
}

.basic-3d5f {
  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);
}

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

.basic-3d5f .backdrop-solid-d119 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.table-thick-3b63 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.search-over-c711 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.slow-755a {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.first-ae3b {
  border: 2px solid #4caf50;
}

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

.badge-78a9 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.photo-action-23dd {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

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

.paragraph-down-273e {
  text-align: right;
}

.paragraph-down-273e .outline_basic_5567 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.full-566c {
  background: #e8f5e9;
  color: #2e7d32;
}

.clean-667b {
  background: #e3f2fd;
  color: #1565c0;
}

.fresh-7744 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_3c9f[aria-expanded="true"] .article_easy_2259 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container_glass_8936,
.purple-45ce {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.container_glass_8936 h4,
.purple-45ce h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.container_glass_8936 ul,
.purple-45ce ul {
  list-style: none;
  padding: 0;
}

.container_glass_8936 li,
.purple-45ce li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.icon_0fa5 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.overlay-glass-173d {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.next_3d18 .backdrop-out-c287 {
  color: #4caf50;
  font-size: 0.875rem;
}

.paper-5449 {
  list-style: none;
  padding: 0;
}

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

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

.paper-5449 a:hover {
  color: white;
}

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

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

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

.feature_0a47 a:hover {
  color: white;
}

.cool-57a1 {
  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);
}

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

.filter-9c9f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .cool-57a1 {
    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;
  }
  
  .video-d0bc {
    font-size: 2rem;
  }
  
  .widget_south_c728 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .badge-9375,
  .accordion_black_e0f3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .medium-4f1f,
  .footer-b741,
  .liquid-6da5,
  .down-d797,
  .green-d0b8,
  .title-soft-60ba,
  .upper_f161,
  .dropdown_last_47f1 {
    grid-template-columns: 1fr;
  }
  
  .hidden-steel-d3aa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .card_19ce {
    padding: var(--space-lg) 0;
  }
  
  .column_warm_ed02 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .column_warm_ed02 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .text_mini_2b73 {
    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;
  }
  
  .hidden-steel-d3aa {
    grid-template-columns: 1fr;
  }
  
  .out-837b,
  .element_5389,
  .breadcrumb_pressed_c2de {
    flex-direction: column;
    width: 100%;
  }
  
  .status-new-cb24,
  .blue_cbf0,
  .out-837b .text_mini_2b73,
  .element_5389 .text_mini_2b73 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .video-d0bc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .widget_south_c728 {
    font-size: 1.375rem;
  }
  
  .wide_6fc4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hover-brown-949a,
  .current-349a,
  .title-mini-545c,
  .wrapper-green-e8fe,
  .outer-04ac {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .thumbnail-ec7d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .row-d207 {
    gap: var(--space-xs);
  }
  
  .thumbnail-6882 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner-93f8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .basic-3d5f {
    width: 150px;
    height: 150px;
  }
  
  .dropdown_00b0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .medium_e61e,
  .surface_iron_9364,
  .out-837b,
  .rough-4993,
  .button-a4a3,
  .tertiary_bottom_bbd5,
  .right-d438 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .card_19ce {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 63df */
.shadow-element-h9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
