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

.hover_liquid_be50:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.progress_5ea3):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. */
.progress_5ea3,
header,
.table-9ffa,
.notice-inner-ee81,
.progress-in-ffa9,
.modal_basic_14ce,
.south_bf9c,
.center-079e,
.hero_small_5523 {
  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
   ============================================ */
.progress_5ea3 {
  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);
}

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

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

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

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

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

.label-b7a0 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.background-1c5d {
  flex: 1;
}

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

.description-outer-4712 {
  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);
}

.description-outer-4712:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.description-outer-4712.pagination_under_2748 {
  background: var(--color-primary);
  color: white;
}

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

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

.border-dim-cc49 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.menu-orange-5dbd {
  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;
}

.menu-orange-5dbd:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.menu-orange-5dbd svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.sort-white-1cda[aria-expanded="true"] .active_5959:nth-child(2) {
  opacity: 0;
}

.sort-white-1cda[aria-expanded="true"] .active_5959:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .background-1c5d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .background-1c5d.slow-dda6 {
    display: block;
    right: 0;
  }
  
  .message_64d8 {
    flex-direction: column;
    gap: 0;
  }
  
  .description-outer-4712 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .background-1c5d::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;
  }
  
  .background-1c5d.slow-dda6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .background-1c5d {
    display: none;
  }
  
  .sort-white-1cda {
    display: flex;
  }
  
  .paragraph-7ae2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .menu-orange-5dbd,
  .next_b2c2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .background_46f1 {
    position: relative;
  }
  
  .badge_9cab {
    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;
  }
  
  .border-dim-cc49[aria-expanded="true"] + .badge_9cab {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .status-advanced-92fd {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pro-19ca {
    gap: 8px;
  }
  
  .menu-orange-5dbd {
    display: none;
  }
  
  .next_b2c2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .label-b7a0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.west-cfe5 svg {
  flex-shrink: 0;
}

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

.west-cfe5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.right-92ff a {
  color: var(--color-primary);
  text-decoration: none;
}

.right-92ff a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .paragraph-5b61 {
    grid-template-columns: 1fr;
  }
  
  .dim-9b60 {
    font-size: 1.75rem;
  }
  
  .progress_7a9b {
    order: -1;
    max-width: 100%;
  }
  
  .form_mini_8edc {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dim-9b60 {
    font-size: 1.5rem;
  }
  
  .bright_69e1 {
    font-size: 1rem;
  }
  
  .right-92ff {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .form_mini_8edc {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.primary-wide-8cb9 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.next-8ea0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.static-0ad0 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.static-0ad0 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-0ad0 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-0ad0 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.image-gas-b3a4 {
  background: var(--color-bg-section);
}

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

.chip-5a21 {
  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);
}

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

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

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

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

.primary-light-80a9 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.primary-light-80a9 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.primary-light-80a9 pre,
.primary-light-80a9 code {
  overflow-x: auto;
  max-width: 100%;
}

.primary-light-80a9 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);
}

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

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

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

.primary-light-80a9 ul,
.primary-light-80a9 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.primary-light-80a9 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.primary-light-80a9 strong {
  font-weight: 600;
  color: var(--color-text);
}

.primary-light-80a9 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.primary-light-80a9 a:hover {
  color: var(--color-primary-dark);
}

.action-774b {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.action-774b 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) {
  .border_af71 {
    grid-template-columns: 1fr;
  }
  
  .input-a75a {
    font-size: 1.75rem;
  }
  
  .primary-light-80a9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .input-a75a {
    font-size: 1.5rem;
  }
  
  .primary-light-80a9 h3 {
    font-size: 1.375rem;
  }
  
  .primary-light-80a9 h4 {
    font-size: 1.125rem;
  }
}

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

.column-red-a6a4 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.article-action-7c86 {
  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;
}

.inner-6b1b {
  flex-shrink: 0;
}

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

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

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

.aside_f027,
.tabs-af1a,
.alert_0c7b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.aside_f027 thead,
.tabs-af1a thead {
  background: var(--color-primary);
  color: white;
}

.aside_f027 th,
.aside_f027 td,
.tabs-af1a th,
.tabs-af1a td,
.alert_0c7b th,
.alert_0c7b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .aside_f027 th,
  .aside_f027 td,
  .tabs-af1a th,
  .tabs-af1a td,
  .alert_0c7b th,
  .alert_0c7b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .aside_f027,
  .tabs-af1a,
  .alert_0c7b {
    min-width: 600px;
  }
}

.aside_f027 th,
.tabs-af1a th,
.alert_0c7b th {
  font-weight: 600;
}

.aside_f027 tbody tr:hover,
.tabs-af1a tbody tr:hover,
.alert_0c7b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.link-motion-149e {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.hover-bf49 h4 {
  color: white;
}

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

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

.mask-b80f:last-child {
  border-bottom: none;
}

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

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

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

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

.footer-plasma-a90f:hover {
  text-decoration: underline;
}

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

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

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

.link-bd6f {
  font-weight: 600;
  color: white;
}

.dropdown-3708 {
  list-style: none;
  padding: 0;
}

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

.element-fixed-a39a {
  color: #4caf50;
}

.outer_4cc5 {
  color: #ff9800;
}

.background-inner-8c7d {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-silver-e547 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.action_8381 .yellow-d636 {
  width: 100%;
  background: white;
}

.panel_bright_0d28 .yellow-d636 {
  color: #667eea;
}

.last_b8b3 .yellow-d636 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .card_2a97 {
    padding: var(--space-md);
  }
  
  .silver_2750 {
    padding: var(--space-md);
  }
  
  .hover-dark-a8fa {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.box-plasma-052a ol,
.box-plasma-052a ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.box-plasma-052a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.down-04cc,
.search-158e,
.module_tiny_9aca,
.wide-ac30 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.left-1481 .progress_e92e {
  background: #e8f5e9;
  color: var(--color-success);
}

.down_ae96 .progress_e92e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.header-last-dc20 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.column-bottom-f676 {
  margin-top: var(--space-xxl);
}

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

.video_c350 {
  text-align: center;
}

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

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

.sidebar_in_c6ee .link-bd6f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.picture-fast-6474 {
  color: var(--color-text-light);
}

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

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

.preview-out-f593 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.hidden-bottom-622c {
  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;
}

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

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

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

.input_down_5c56 {
  text-align: right;
}

.input_down_5c56 .border-78b0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hidden-over-0708 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.article_north_71fc {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.form-dark-9b1b {
  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);
}

.form-dark-9b1b:hover {
  background: var(--color-bg-alt);
}

.aside-393a {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.form-dark-9b1b[aria-expanded="true"] .aside-393a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-88f0,
.basic-6c22 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tabs-88f0 h4,
.basic-6c22 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tabs-88f0 ul,
.basic-6c22 ul {
  list-style: none;
  padding: 0;
}

.tabs-88f0 li,
.basic-6c22 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.slider-next-1959 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.yellow_ddf0 {
  font-style: italic;
}

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

.stone-1ffc {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside_f167 .background_black_feb6 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.lower_39cb a:hover {
  color: white;
}

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

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

.popup-paper-f149 a {
  color: #b0b0b0;
  text-decoration: none;
}

.popup-paper-f149 a:hover {
  color: white;
}

.pagination-eaf6 {
  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_3ca2 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

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

.menu-lite-5f45 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .pagination-eaf6 {
    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;
  }
  
  .dim-9b60 {
    font-size: 2rem;
  }
  
  .input-a75a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .paragraph-5b61,
  .border_af71 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tall-5d7e,
  .tertiary-under-fd52,
  .tabs-bf10,
  .gradient_plasma_41a4,
  .container-12e2,
  .thick_3c09,
  .status_7715,
  .sort-53f2 {
    grid-template-columns: 1fr;
  }
  
  .disabled_pressed_a315 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .south_bf9c {
    padding: var(--space-lg) 0;
  }
  
  .static-0ad0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .static-0ad0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .yellow-d636 {
    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;
  }
  
  .disabled_pressed_a315 {
    grid-template-columns: 1fr;
  }
  
  .upper_a91e,
  .filter_4195,
  .surface_iron_37b5 {
    flex-direction: column;
    width: 100%;
  }
  
  .basic_daa5,
  .primary-wide-8cb9,
  .upper_a91e .yellow-d636,
  .filter_4195 .yellow-d636 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dim-9b60 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .input-a75a {
    font-size: 1.375rem;
  }
  
  .white_54fc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .next-8ea0,
  .center_bb21,
  .steel_b477,
  .small_b508,
  .pattern_8f7b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .element-fc4a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pagination_0a0c {
    gap: var(--space-xs);
  }
  
  .west-cfe5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column_next_449a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .sidebar_in_c6ee {
    width: 150px;
    height: 150px;
  }
  
  .upper-b88b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .progress_5ea3,
  .table-9ffa,
  .upper_a91e,
  .stone-1ffc,
  .center-079e,
  .hero_small_5523,
  .sort-white-1cda {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .south_bf9c {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 408e */
.promo-block-r7 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
