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

.primary-small-be97:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.card-b4ab):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. */
.card-b4ab,
header,
.notification_730e,
.logo-yellow-0dab,
.preview_bronze_cda6,
.south-7445,
.slider-c329,
.menu_right_7cec,
.outline_df6f {
  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
   ============================================ */
.card-b4ab {
  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);
}

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

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

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

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

.sort-right-1cd4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lower-661e img {
  height: 36px;
  width: auto;
  display: block;
}

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

.block-smooth-feb2 {
  flex: 1;
}

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

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

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

.wood_7bf5.secondary-soft-f70c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.column-gold-40e5 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.table-e1e6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.text-ee4b[aria-expanded="true"] .hovered-b496:nth-child(2) {
  opacity: 0;
}

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

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

  .block-smooth-feb2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .block-smooth-feb2.paragraph-db95 {
    display: block;
    right: 0;
  }
  
  .card-1dab {
    flex-direction: column;
    gap: 0;
  }
  
  .wood_7bf5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .block-smooth-feb2::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;
  }
  
  .block-smooth-feb2.paragraph-db95::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .block-smooth-feb2 {
    display: none;
  }
  
  .text-ee4b {
    display: flex;
  }
  
  .center-3df2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .table-e1e6,
  .small-ad97 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .column-gold-40e5 {
    position: relative;
  }
  
  .rough_40a5 {
    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;
  }
  
  .active_c8bc[aria-expanded="true"] + .rough_40a5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .new_50a1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .border_c172 {
    gap: 8px;
  }
  
  .table-e1e6 {
    display: none;
  }
  
  .small-ad97 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .lower-661e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.basic_2d8c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.frame-e0a5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  .table-light-8d7d {
    grid-template-columns: 1fr;
  }
}

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

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

.bright-3e26 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bright-3e26 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.outer-93cf {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.tag-selected-0418 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .clean_760e {
    grid-template-columns: 1fr;
  }
  
  .border-5640 {
    font-size: 1.75rem;
  }
  
  .accordion_clean_4156 {
    order: -1;
    max-width: 100%;
  }
  
  .tag-selected-0418 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border-5640 {
    font-size: 1.5rem;
  }
  
  .overlay_c872 {
    font-size: 1rem;
  }
  
  .frame-e0a5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tag-selected-0418 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.bronze-b4d8 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.thumbnail-75e6 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-0741 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;
}

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

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

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

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

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

.top-77da {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-914d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.paragraph-914d 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) {
  .static_1c16 {
    grid-template-columns: 1fr;
  }
  
  .top-77da {
    font-size: 1.75rem;
  }
  
  .hero_stale_0f36 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .top-77da {
    font-size: 1.5rem;
  }
  
  .hero_stale_0f36 h3 {
    font-size: 1.375rem;
  }
  
  .hero_stale_0f36 h4 {
    font-size: 1.125rem;
  }
}

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

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

.link-left-44fe {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.article-879f {
  flex-shrink: 0;
}

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

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

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

.progress-purple-276d,
.outline_1d22,
.down_7b3d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.progress-purple-276d thead,
.outline_1d22 thead {
  background: var(--color-primary);
  color: white;
}

.progress-purple-276d th,
.progress-purple-276d td,
.outline_1d22 th,
.outline_1d22 td,
.down_7b3d th,
.down_7b3d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .progress-purple-276d th,
  .progress-purple-276d td,
  .outline_1d22 th,
  .outline_1d22 td,
  .down_7b3d th,
  .down_7b3d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .progress-purple-276d,
  .outline_1d22,
  .down_7b3d {
    min-width: 600px;
  }
}

.progress-purple-276d th,
.outline_1d22 th,
.down_7b3d th {
  font-weight: 600;
}

.progress-purple-276d tbody tr:hover,
.outline_1d22 tbody tr:hover,
.down_7b3d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption-hot-339b h4 {
  color: white;
}

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

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

.dynamic-5632:last-child {
  border-bottom: none;
}

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

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

.aside-upper-9e81 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.warm-d0eb:hover {
  text-decoration: underline;
}

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

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

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

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

.stale-9575 {
  list-style: none;
  padding: 0;
}

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

.icon-cd73 {
  color: #4caf50;
}

.west_d68a {
  color: #ff9800;
}

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

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

.gradient-cold-8f16 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown_3c9d .tabs-02d1 {
  width: 100%;
  background: white;
}

.surface_4197 .tabs-02d1 {
  color: #667eea;
}

.highlight-fresh-3bb8 .tabs-02d1 {
  color: #f5576c;
}

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

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

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

.main-under-1aa4 {
  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);
}

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

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

@media (max-width: 768px) {
  .black-c54a {
    padding: var(--space-md);
  }
  
  .iron-d35a {
    padding: var(--space-md);
  }
  
  .bright_22d3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.secondary-4b36 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.component-full-3147,
.soft-6184,
.overlay_active_e8a5,
.picture_right_4a56 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.feature-hovered-9ed3 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.container-advanced-c5d9 {
  border-color: var(--color-success);
}

.title-silver-81bc {
  border-color: var(--color-warning);
}

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

.container-advanced-c5d9 .gallery-f4a7 {
  background: #e8f5e9;
  color: var(--color-success);
}

.title-silver-81bc .gallery-f4a7 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header_advanced_e3ce {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-6864 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.down-e0a5 {
  text-align: right;
}

.down-e0a5 .purple-0c6e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.caption-soft-f5fe {
  background: #fff3e0;
  color: #e65100;
}

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

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

.section-north-43bf {
  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);
}

.section-north-43bf:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer_e87d,
.disabled-aa24 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.outer_e87d h4,
.disabled-aa24 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.outer_e87d ul,
.disabled-aa24 ul {
  list-style: none;
  padding: 0;
}

.outer_e87d li,
.disabled-aa24 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.backdrop-b929 {
  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_ae7b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_194b {
  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_194b {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.label_outer_32c7 .description_orange_06aa {
  color: #4caf50;
  font-size: 0.875rem;
}

.panel-72cb {
  list-style: none;
  padding: 0;
}

.panel-72cb li {
  margin-bottom: var(--space-xs);
}

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

.panel-72cb a:hover {
  color: white;
}

.heading-center-36cf {
  list-style: none;
  padding: 0;
}

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

.heading-center-36cf a {
  color: #b0b0b0;
  text-decoration: none;
}

.heading-center-36cf a:hover {
  color: white;
}

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

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

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

.media-462f {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .row-a854 {
    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;
  }
  
  .border-5640 {
    font-size: 2rem;
  }
  
  .top-77da {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .clean_760e,
  .static_1c16 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .wrapper-45a0,
  .stale_ef19,
  .mini-4443,
  .hard-ba74,
  .dropdown_light_9688,
  .tag_3d37,
  .border-82c3,
  .dropdown_194b {
    grid-template-columns: 1fr;
  }
  
  .title-brown-c895 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .slider-c329 {
    padding: var(--space-lg) 0;
  }
  
  .frame-0741 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .frame-0741 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tabs-02d1 {
    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;
  }
  
  .title-brown-c895 {
    grid-template-columns: 1fr;
  }
  
  .outer-93cf,
  .banner_bright_fb8f,
  .in-acec {
    flex-direction: column;
    width: 100%;
  }
  
  .bronze-b4d8,
  .thumbnail-75e6,
  .outer-93cf .tabs-02d1,
  .banner_bright_fb8f .tabs-02d1 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border-5640 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .top-77da {
    font-size: 1.375rem;
  }
  
  .prev-39d7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .gas-3362,
  .selected-f503,
  .sidebar-out-086e,
  .summary-west-377a,
  .secondary_bottom_7f5b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .info-ca61 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .header-7ad2 {
    gap: var(--space-xs);
  }
  
  .basic_2d8c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .static_dee4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .backdrop_6522 {
    width: 150px;
    height: 150px;
  }
  
  .layout_warm_aed9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .card-b4ab,
  .notification_730e,
  .outer-93cf,
  .slider_red_f929,
  .menu_right_7cec,
  .outline_df6f,
  .text-ee4b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .slider-c329 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5429 */
.promo-block-f4 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
