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

.medium-f3c6:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.footer_right_fdeb):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. */
.footer_right_fdeb,
header,
.hot_9297,
.solid-0c47,
.mask_liquid_5185,
.slider-full-e115,
.outline-glass-c799,
.background_346c,
.yellow_8a60 {
  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
   ============================================ */
.footer_right_fdeb {
  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);
}

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

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

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

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

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

.layout_5877 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.layout_16ea {
  flex: 1;
}

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

.highlight-390d {
  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);
}

.highlight-390d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.highlight-390d.panel_motion_00fc {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.aside-7cfb {
  position: relative;
}

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

.silver-a354 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.block-slow-2e0c {
  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;
}

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

.block-slow-2e0c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.texture-glass-19f3[aria-expanded="true"] .dark_7b1d:nth-child(2) {
  opacity: 0;
}

.texture-glass-19f3[aria-expanded="true"] .dark_7b1d:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .layout_16ea::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .layout_16ea.header_340b {
    display: block;
    right: 0;
  }
  
  .input_yellow_eb6f {
    flex-direction: column;
    gap: 0;
  }
  
  .highlight-390d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .layout_16ea::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;
  }
  
  .layout_16ea.header_340b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .layout_16ea {
    display: none;
  }
  
  .texture-glass-19f3 {
    display: flex;
  }
  
  .widget_complex_f091 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .block-slow-2e0c,
  .shadow_green_2610 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .aside-7cfb {
    position: relative;
  }
  
  .shade_brown_7163 {
    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;
  }
  
  .silver-a354[aria-expanded="true"] + .shade_brown_7163 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .grid-2f89 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .column-old-a0ad {
    gap: 8px;
  }
  
  .block-slow-2e0c {
    display: none;
  }
  
  .shadow_green_2610 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .layout_5877 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.popup_down_b3d4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.notice-steel-33eb a {
  color: var(--color-primary);
  text-decoration: none;
}

.notice-steel-33eb a:hover {
  text-decoration: underline;
}

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

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

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

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

.tooltip-current-42eb {
  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-current-42eb {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.dropdown-fluid-04fd {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .component-730c {
    grid-template-columns: 1fr;
  }
  
  .primary_wide_3b3f {
    font-size: 1.75rem;
  }
  
  .yellow-a719 {
    order: -1;
    max-width: 100%;
  }
  
  .west_5795 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .primary_wide_3b3f {
    font-size: 1.5rem;
  }
  
  .avatar_full_9429 {
    font-size: 1rem;
  }
  
  .notice-steel-33eb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .west_5795 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-wood-ed02:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.image-9c07 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title_narrow_0fa4 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) {
  .menu_pro_fe0b {
    grid-template-columns: 1fr;
  }
  
  .border-a614 {
    font-size: 1.75rem;
  }
  
  .dirty_09fd {
    max-width: 100%;
  }
}

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

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

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

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

.hidden-over-b719 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.background-25fd strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.glass-e636 {
  flex-shrink: 0;
}

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

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

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

.hard-474a,
.shade-56b5,
.input-narrow-b8c4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hard-474a thead,
.shade-56b5 thead {
  background: var(--color-primary);
  color: white;
}

.hard-474a th,
.hard-474a td,
.shade-56b5 th,
.shade-56b5 td,
.input-narrow-b8c4 th,
.input-narrow-b8c4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hard-474a th,
  .hard-474a td,
  .shade-56b5 th,
  .shade-56b5 td,
  .input-narrow-b8c4 th,
  .input-narrow-b8c4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hard-474a,
  .shade-56b5,
  .input-narrow-b8c4 {
    min-width: 600px;
  }
}

.hard-474a th,
.shade-56b5 th,
.input-narrow-b8c4 th {
  font-weight: 600;
}

.hard-474a tbody tr:hover,
.shade-56b5 tbody tr:hover,
.input-narrow-b8c4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pattern_thick_16e0 h4 {
  color: white;
}

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

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

.widget-7c87:last-child {
  border-bottom: none;
}

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

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

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

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

.shade-active-1a45:hover {
  text-decoration: underline;
}

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

.column-basic-1ba4 {
  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-basic-1ba4 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.hover-yellow-a623 {
  font-weight: 600;
  color: white;
}

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

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

.gallery-d3a8 {
  color: #4caf50;
}

.paragraph-cold-7dbf {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-slow-10a5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.header-slow-10a5 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.header-slow-10a5 li {
  padding: var(--space-xs) 0;
  color: white;
}

.header-slow-10a5 .footer-81eb {
  width: 100%;
  background: white;
}

.progress-82b6 .footer-81eb {
  color: #667eea;
}

.wrapper_prev_ef8b .footer-81eb {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .shadow_b06b {
    padding: var(--space-md);
  }
  
  .hard-ecd7 {
    padding: var(--space-md);
  }
  
  .surface-2a36 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.dropdown-0f3c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.sidebar_4184,
.tag_outer_ed7c,
.right_2d57,
.module-0529 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper_0b60 .chip-7110 {
  background: #e8f5e9;
  color: var(--color-success);
}

.focus_lite_f265 .chip-7110 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.nav-black-02dd {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.title-hard-5c5b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.shadow-0e1a {
  margin-top: var(--space-xxl);
}

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

.avatar_basic_a180 {
  text-align: center;
}

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

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

.stone_0949 .hover-yellow-a623 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.notification-over-0788 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.feature-iron-2020 {
  color: var(--color-text-light);
}

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

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

.block-63fb {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.warm-08cb {
  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;
}

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

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

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

.simple_f00b {
  text-align: right;
}

.simple_f00b .summary-0cf8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.nav-tiny-753c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.mask-bottom-d7bf {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark-2c32 {
  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);
}

.dark-2c32:hover {
  background: var(--color-bg-alt);
}

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

.dark-2c32[aria-expanded="true"] .prev_670a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-bottom-ef12,
.hero-paper-8450 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.message-bottom-ef12 h4,
.hero-paper-8450 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.message-bottom-ef12 ul,
.hero-paper-8450 ul {
  list-style: none;
  padding: 0;
}

.message-bottom-ef12 li,
.hero-paper-8450 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .shadow-lite-86cd {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.wrapper-8cbb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-46a8 .notification-7715 {
  color: #4caf50;
  font-size: 0.875rem;
}

.filter-old-0b2d {
  list-style: none;
  padding: 0;
}

.filter-old-0b2d li {
  margin-bottom: var(--space-xs);
}

.filter-old-0b2d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.filter-old-0b2d a:hover {
  color: white;
}

.footer-6940 {
  list-style: none;
  padding: 0;
}

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

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

.footer-6940 a:hover {
  color: white;
}

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

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

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

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

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

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

.dark-d528:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gallery_a859 {
    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;
  }
  
  .primary_wide_3b3f {
    font-size: 2rem;
  }
  
  .border-a614 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .component-730c,
  .menu_pro_fe0b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .green-3c11,
  .label-c557,
  .logo-inner-4d2a,
  .iron-4317,
  .gallery_motion_a758,
  .shadow-lite-86cd,
  .disabled_fixed_e946,
  .light_2492 {
    grid-template-columns: 1fr;
  }
  
  .disabled-motion-1642 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .outline-glass-c799 {
    padding: var(--space-lg) 0;
  }
  
  .feature_first_f430 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .feature_first_f430 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .footer-81eb {
    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-motion-1642 {
    grid-template-columns: 1fr;
  }
  
  .status_5edf,
  .label-fixed-f312,
  .smooth_0073 {
    flex-direction: column;
    width: 100%;
  }
  
  .column_e876,
  .description_stale_b5ba,
  .status_5edf .footer-81eb,
  .label-fixed-f312 .footer-81eb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .primary_wide_3b3f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .border-a614 {
    font-size: 1.375rem;
  }
  
  .layout_black_a1e8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .avatar-wood-ed02,
  .label-fast-8038,
  .panel-new-3b10,
  .steel-a166,
  .block_d9de {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .form-c7fe {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .photo_next_dd50 {
    gap: var(--space-xs);
  }
  
  .popup_down_b3d4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column-basic-1ba4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .stone_0949 {
    width: 150px;
    height: 150px;
  }
  
  .summary_5f00 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .footer_right_fdeb,
  .hot_9297,
  .status_5edf,
  .gold-c3c7,
  .background_346c,
  .yellow_8a60,
  .texture-glass-19f3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .outline-glass-c799 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5dbc */
.phantom-card-q7 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
