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

.fluid_b3eb:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.avatar_fdb1):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. */
.avatar_fdb1,
header,
.steel-3f0d,
.current-018e,
.photo-iron-7350,
.static_9309,
.selected-fa57,
.sort-middle-9333,
.header-a92c {
  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
   ============================================ */
.avatar_fdb1 {
  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);
}

.surface-glass-0bc2 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.table-a1fd img {
  height: 36px;
  width: auto;
  display: block;
}

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

.tertiary-dcc4 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.main-brown-74e2 {
  position: relative;
}

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

.liquid-bd35 svg {
  transition: transform 0.2s ease;
}

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

.copper-82a9 {
  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;
}

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

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

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

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

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

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

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

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

.outer-da81 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.gallery-bottom-8bf5[aria-expanded="true"] .row_1389:nth-child(2) {
  opacity: 0;
}

.gallery-bottom-8bf5[aria-expanded="true"] .row_1389:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .tertiary-dcc4::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .tertiary-dcc4.tag_c83b {
    display: block;
    right: 0;
  }
  
  .down-6c3d {
    flex-direction: column;
    gap: 0;
  }
  
  .overlay_a3cd {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .tertiary-dcc4::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;
  }
  
  .tertiary-dcc4.tag_c83b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .tertiary-dcc4 {
    display: none;
  }
  
  .gallery-bottom-8bf5 {
    display: flex;
  }
  
  .tall_4316 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .outer-da81,
  .thumbnail_static_19c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .main-brown-74e2 {
    position: relative;
  }
  
  .copper-82a9 {
    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;
  }
  
  .liquid-bd35[aria-expanded="true"] + .copper-82a9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .smooth-efb9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .brown_1847 {
    gap: 8px;
  }
  
  .outer-da81 {
    display: none;
  }
  
  .thumbnail_static_19c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .table-a1fd img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.secondary_fb73 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.static-7694 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.input-gas-e3a8 {
  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;
}

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

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

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

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

.medium-3d60 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .content_pressed_d0f5 {
    grid-template-columns: 1fr;
  }
  
  .stale-d1fe {
    font-size: 1.75rem;
  }
  
  .medium-3d60 {
    order: -1;
    max-width: 100%;
  }
  
  .video_prev_f19f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .stale-d1fe {
    font-size: 1.5rem;
  }
  
  .column-9cb8 {
    font-size: 1rem;
  }
  
  .static-7694 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .video_prev_f19f {
    max-width: 250px;
  }
}

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

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

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

.active-last-4adc {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.active-last-4adc:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.article-d3d1 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.menu-down-a3e8 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.static-56d3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.static-56d3 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);
}

.static-56d3 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;
}

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

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

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

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

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

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

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

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

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

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

.widget-down-f842 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.widget-down-f842 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);
}

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

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

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

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

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

.widget-down-f842 strong {
  font-weight: 600;
  color: var(--color-text);
}

.widget-down-f842 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.widget-down-f842 a:hover {
  color: var(--color-primary-dark);
}

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

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

.overlay_0bb7 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-easy-cf03 {
    grid-template-columns: 1fr;
  }
  
  .tooltip-ae5d {
    font-size: 1.75rem;
  }
  
  .widget-down-f842 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tooltip-ae5d {
    font-size: 1.5rem;
  }
  
  .widget-down-f842 h3 {
    font-size: 1.375rem;
  }
  
  .widget-down-f842 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.simple-4b41 {
  flex-shrink: 0;
}

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

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

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

.message-thick-6bff,
.tooltip-cool-3558,
.list-simple-ad9d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.message-thick-6bff thead,
.tooltip-cool-3558 thead {
  background: var(--color-primary);
  color: white;
}

.message-thick-6bff th,
.message-thick-6bff td,
.tooltip-cool-3558 th,
.tooltip-cool-3558 td,
.list-simple-ad9d th,
.list-simple-ad9d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .message-thick-6bff th,
  .message-thick-6bff td,
  .tooltip-cool-3558 th,
  .tooltip-cool-3558 td,
  .list-simple-ad9d th,
  .list-simple-ad9d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .message-thick-6bff,
  .tooltip-cool-3558,
  .list-simple-ad9d {
    min-width: 600px;
  }
}

.message-thick-6bff th,
.tooltip-cool-3558 th,
.list-simple-ad9d th {
  font-weight: 600;
}

.message-thick-6bff tbody tr:hover,
.tooltip-cool-3558 tbody tr:hover,
.list-simple-ad9d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.carousel_a000 h4 {
  color: white;
}

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

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

.east-8ba0:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.caption-abf5 {
  font-weight: 600;
  color: white;
}

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

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

.heading_845d {
  color: #4caf50;
}

.notification_hard_4099 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.up-713e {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.progress_ac23 .grid-stone-e81c {
  width: 100%;
  background: white;
}

.up-f4a8 .grid-stone-e81c {
  color: #667eea;
}

.card-f495 .grid-stone-e81c {
  color: #f5576c;
}

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

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

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

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

.sidebar-west-97f5 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .sidebar-west-97f5 {
    padding: var(--space-md);
  }
  
  .lower_7807 {
    padding: var(--space-md);
  }
  
  .preview-smooth-efdd {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.footer-old-4db4 ol,
.footer-old-4db4 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.footer-old-4db4 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.dark_9532,
.border-1247,
.sidebar-huge-6c1d,
.next-1326 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .main-active-43b3 {
    grid-template-columns: 1fr;
  }
}

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

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

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

.hero-wide-d8e7 {
  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);
}

.box_eb68 .hero-wide-d8e7 {
  background: #e8f5e9;
  color: var(--color-success);
}

.component_iron_d9e6 .hero-wide-d8e7 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-mini-c529 {
  margin-top: var(--space-xxl);
}

.popup-green-8e62 {
  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);
}

.solid-c537 {
  text-align: center;
}

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

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

.widget_dirty_e5bf .caption-abf5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.detail-left-dbc8 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.static-753a {
  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;
}

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

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

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

.progress-5617 {
  text-align: right;
}

.progress-5617 .yellow_134e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.basic-4cbb {
  background: #e3f2fd;
  color: #1565c0;
}

.accent-af2e {
  background: #fff3e0;
  color: #e65100;
}

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

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

.popup-4dbc {
  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);
}

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

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

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

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

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

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

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

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

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

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

.plasma-8f8e {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.rough_dddd[aria-expanded="true"] .plasma-8f8e {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.hover-yellow-fc4a {
  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);
}

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

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

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

.text-steel-bc59,
.focused-8f88 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.text-steel-bc59 h4,
.focused-8f88 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.text-steel-bc59 ul,
.focused-8f88 ul {
  list-style: none;
  padding: 0;
}

.text-steel-bc59 li,
.focused-8f88 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.yellow-1ce9 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.feature-center-a665 {
  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);
}

.gallery_hard_fd5a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.selected-b905 .component-f450 {
  color: #4caf50;
  font-size: 0.875rem;
}

.link-ca15 {
  list-style: none;
  padding: 0;
}

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

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

.link-ca15 a:hover {
  color: white;
}

.photo-red-d797 {
  list-style: none;
  padding: 0;
}

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

.photo-red-d797 a {
  color: #b0b0b0;
  text-decoration: none;
}

.photo-red-d797 a:hover {
  color: white;
}

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

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

.status-current-9778 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.carousel-ff46:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .block_active_977f {
    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;
  }
  
  .stale-d1fe {
    font-size: 2rem;
  }
  
  .tooltip-ae5d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .content_pressed_d0f5,
  .element-easy-cf03 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hover_bottom_427d,
  .main-active-43b3,
  .up_a5bb,
  .hero-75aa,
  .blue_acc5,
  .out_deef,
  .picture-huge-d816,
  .section-bronze-e663 {
    grid-template-columns: 1fr;
  }
  
  .stone_fd76 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .selected-fa57 {
    padding: var(--space-lg) 0;
  }
  
  .static-56d3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .static-56d3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .grid-stone-e81c {
    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;
  }
  
  .stone_fd76 {
    grid-template-columns: 1fr;
  }
  
  .slider_plasma_b16d,
  .red_04f1,
  .background_east_ffe4 {
    flex-direction: column;
    width: 100%;
  }
  
  .article-d3d1,
  .menu-down-a3e8,
  .slider_plasma_b16d .grid-stone-e81c,
  .red_04f1 .grid-stone-e81c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .stale-d1fe {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tooltip-ae5d {
    font-size: 1.375rem;
  }
  
  .in_bf82 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hovered-72fd,
  .green_2ebc,
  .logo_action_a405,
  .table_orange_27e3,
  .form-650b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dirty_907a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fresh-776d {
    gap: var(--space-xs);
  }
  
  .secondary_fb73 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .large_23cb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .widget_dirty_e5bf {
    width: 150px;
    height: 150px;
  }
  
  .dynamic_94ab {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .avatar_fdb1,
  .steel-3f0d,
  .slider_plasma_b16d,
  .shade_f1f2,
  .sort-middle-9333,
  .header-a92c,
  .gallery-bottom-8bf5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .selected-fa57 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 64bb */
.widget-item-t4 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
