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

.footer-cb17:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.heading_huge_ec9e):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. */
.heading_huge_ec9e,
header,
.photo-hard-4c41,
.panel_724e,
.main-9d4f,
.text-5272,
.highlight_steel_5783,
.texture-4e9f,
.texture_8482 {
  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
   ============================================ */
.heading_huge_ec9e {
  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);
}

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

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

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

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

.dropdown-brown-212f {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.modal-13c8 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.banner_slow_159a {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.title-dirty-5918 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.overlay_bronze_83a8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.detail-1605[aria-expanded="true"] .plasma-c01e:nth-child(2) {
  opacity: 0;
}

.detail-1605[aria-expanded="true"] .plasma-c01e:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .banner_slow_159a {
    display: none;
  }
  
  .detail-1605 {
    display: flex;
  }
  
  .component_0e4f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .overlay_bronze_83a8,
  .active-0583 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .title-dirty-5918 {
    position: relative;
  }
  
  .content_4795 {
    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;
  }
  
  .filter_steel_307e[aria-expanded="true"] + .content_4795 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .sidebar-1ed2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .lower-0e1b {
    gap: 8px;
  }
  
  .overlay_bronze_83a8 {
    display: none;
  }
  
  .active-0583 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .modal-13c8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.item_pressed_4ac3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.overlay-bbde a:hover {
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  .modal-cool-8bfe {
    grid-template-columns: 1fr;
  }
}

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

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

.link-cold-7b2c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-cold-7b2c strong {
  font-weight: 600;
  color: var(--color-text);
}

.link-cold-7b2c span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.tooltip-705a {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .button_iron_4bdc {
    grid-template-columns: 1fr;
  }
  
  .hover-7704 {
    font-size: 1.75rem;
  }
  
  .tooltip-705a {
    order: -1;
    max-width: 100%;
  }
  
  .thumbnail_ebee {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hover-7704 {
    font-size: 1.5rem;
  }
  
  .stale-7181 {
    font-size: 1rem;
  }
  
  .overlay-bbde {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .thumbnail_ebee {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.dropdown-27fd {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

.main-active-30a0 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.main-active-30a0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.highlight-dark-33fa {
  list-style: none;
  counter-reset: toc-counter;
}

.highlight-dark-33fa li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.highlight-dark-33fa 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);
}

.highlight-dark-33fa 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;
}

.highlight-dark-33fa li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

.image-679f {
  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);
}

.caption-inner-5166 {
  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);
}

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

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

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

.media-right-796f {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.media-right-796f img {
  max-width: 100%;
  height: auto;
  display: block;
}

.media-right-796f pre,
.media-right-796f code {
  overflow-x: auto;
  max-width: 100%;
}

.media-right-796f 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);
}

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

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

.media-right-796f p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.media-right-796f ul,
.media-right-796f ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.media-right-796f li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.media-right-796f strong {
  font-weight: 600;
  color: var(--color-text);
}

.media-right-796f a {
  color: var(--color-primary);
  text-decoration: underline;
}

.media-right-796f a:hover {
  color: var(--color-primary-dark);
}

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

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

.table_light_2303 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) {
  .surface_left_d481 {
    grid-template-columns: 1fr;
  }
  
  .caption-inner-5166 {
    font-size: 1.75rem;
  }
  
  .media-right-796f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .caption-inner-5166 {
    font-size: 1.5rem;
  }
  
  .media-right-796f h3 {
    font-size: 1.375rem;
  }
  
  .media-right-796f h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.notification-640b strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.rough_6151 {
  flex-shrink: 0;
}

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

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

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

.orange-2ec9,
.pro-b6a2,
.tertiary-739e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.orange-2ec9 thead,
.pro-b6a2 thead {
  background: var(--color-primary);
  color: white;
}

.orange-2ec9 th,
.orange-2ec9 td,
.pro-b6a2 th,
.pro-b6a2 td,
.tertiary-739e th,
.tertiary-739e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .orange-2ec9 th,
  .orange-2ec9 td,
  .pro-b6a2 th,
  .pro-b6a2 td,
  .tertiary-739e th,
  .tertiary-739e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .orange-2ec9,
  .pro-b6a2,
  .tertiary-739e {
    min-width: 600px;
  }
}

.orange-2ec9 th,
.pro-b6a2 th,
.tertiary-739e th {
  font-weight: 600;
}

.orange-2ec9 tbody tr:hover,
.pro-b6a2 tbody tr:hover,
.tertiary-739e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.section-9a22 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.green_1e57 {
  color: #4caf50;
}

.highlight_small_0db7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface_glass_4bc2 .blue-f1a4 {
  width: 100%;
  background: white;
}

.article-bottom-b908 .blue-f1a4 {
  color: #667eea;
}

.yellow-5c53 .blue-f1a4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .button_3a57 {
    padding: var(--space-md);
  }
  
  .grid_glass_17b1 {
    padding: var(--space-md);
  }
  
  .surface-left-94ec {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.surface-left-94ec {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.container_e539,
.photo-stale-e7ae,
.dropdown_fresh_00fa,
.tall-deff {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.icon-pro-8ee8 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

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

.picture-right-f19d {
  border-color: var(--color-warning);
}

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

.main-f5e6 .upper_8b67 {
  background: #e8f5e9;
  color: var(--color-success);
}

.picture-right-f19d .upper_8b67 {
  background: #fff3e0;
  color: var(--color-warning);
}

.icon-pro-8ee8 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.icon-pro-8ee8 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.content-light-6397 {
  text-align: center;
}

.box-over-fbea {
  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);
}

.focus-hard-904e {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.box-over-fbea .message_3956 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.module-2e49 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-focused-34b7 {
  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;
}

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

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

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

.simple-8a58 {
  text-align: right;
}

.simple-8a58 .banner_17fe {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.east-3986 {
  background: #e8f5e9;
  color: #2e7d32;
}

.breadcrumb-8c5a {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.notice-rough-0d7e span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.backdrop_0146 {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

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

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

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

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

.info-rough-4f73 {
  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);
}

.info-rough-4f73:hover {
  background: var(--color-bg-alt);
}

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

.info-rough-4f73[aria-expanded="true"] .article-a4be {
  transform: rotate(180deg);
}

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

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

.content-gold-2a0c ul,
.content-gold-2a0c ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.content-gold-2a0c li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.current-b2e6,
.left_a6dd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.current-b2e6 h4,
.left_a6dd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.current-b2e6 ul,
.left_a6dd ul {
  list-style: none;
  padding: 0;
}

.current-b2e6 li,
.left_a6dd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.clean-1dbb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_inner_663c .card-4666 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.tag_2124 a:hover {
  color: white;
}

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

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

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

.layout_31ca a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .image_57dd {
    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;
  }
  
  .hover-7704 {
    font-size: 2rem;
  }
  
  .caption-inner-5166 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .button_iron_4bdc,
  .surface_left_d481 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .highlight-old-5b5d,
  .first_3aa2,
  .section-ce9f,
  .surface_easy_99c2,
  .top-774d,
  .prev-c495,
  .bright_6adc,
  .footer-narrow-877c {
    grid-template-columns: 1fr;
  }
  
  .border_in_2feb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .highlight_steel_5783 {
    padding: var(--space-lg) 0;
  }
  
  .highlight-dark-33fa li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .highlight-dark-33fa li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .blue-f1a4 {
    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;
  }
  
  .border_in_2feb {
    grid-template-columns: 1fr;
  }
  
  .in-d0ff,
  .logo-306b,
  .box-stale-7493 {
    flex-direction: column;
    width: 100%;
  }
  
  .dropdown-27fd,
  .message_cool_9da9,
  .in-d0ff .blue-f1a4,
  .logo-306b .blue-f1a4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hover-7704 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .caption-inner-5166 {
    font-size: 1.375rem;
  }
  
  .dropdown-pro-8bd4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .main-active-30a0,
  .medium-4bff,
  .video_0695,
  .text-7725,
  .prev_a704 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .outline_orange_52c6 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gallery-advanced-1798 {
    gap: var(--space-xs);
  }
  
  .item_pressed_4ac3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature_white_200e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .box-over-fbea {
    width: 150px;
    height: 150px;
  }
  
  .focus-hard-904e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .heading_huge_ec9e,
  .photo-hard-4c41,
  .in-d0ff,
  .purple_2747,
  .texture-4e9f,
  .texture_8482,
  .detail-1605 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .highlight_steel_5783 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 972a */
.phantom-card-j4 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.0;
}
