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

.feature-north-0233:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.pattern-silver-4beb):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. */
.pattern-silver-4beb,
header,
.description_46f5,
.old_6aea,
.description_90da,
.yellow-8d6e,
.advanced_dd6b,
.current-2068,
.pink_ffe2 {
  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
   ============================================ */
.pattern-silver-4beb {
  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);
}

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

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

/* Scrolled state */
.pattern-silver-4beb.form_be80 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.focus-black-07df img {
  height: 36px;
  width: auto;
  display: block;
}

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

.badge_e653 {
  flex: 1;
}

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

.popup-white-ef21 {
  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);
}

.popup-white-ef21:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.popup-white-ef21.east-094e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.slider-static-cfac {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.smooth-bd00 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.motion-ae84[aria-expanded="true"] .breadcrumb_4003:nth-child(2) {
  opacity: 0;
}

.motion-ae84[aria-expanded="true"] .breadcrumb_4003:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .badge_e653::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .badge_e653.hover_14a9 {
    display: block;
    right: 0;
  }
  
  .surface-b197 {
    flex-direction: column;
    gap: 0;
  }
  
  .popup-white-ef21 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .badge_e653::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;
  }
  
  .badge_e653.hover_14a9::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .badge_e653 {
    display: none;
  }
  
  .motion-ae84 {
    display: flex;
  }
  
  .new_d4c5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .smooth-bd00,
  .advanced_b5f9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .slider-static-cfac {
    position: relative;
  }
  
  .panel-f2f7 {
    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;
  }
  
  .sort_adac[aria-expanded="true"] + .panel-f2f7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .paragraph_paper_27ce {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .center_8226 {
    gap: 8px;
  }
  
  .smooth-bd00 {
    display: none;
  }
  
  .advanced_b5f9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .focus-black-07df img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.feature_beb5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-0acb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hot-5ea1 {
    grid-template-columns: 1fr;
  }
  
  .frame-hot-f820 {
    font-size: 1.75rem;
  }
  
  .icon_deca {
    order: -1;
    max-width: 100%;
  }
  
  .right_476a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .frame-hot-f820 {
    font-size: 1.5rem;
  }
  
  .disabled_silver_a2e6 {
    font-size: 1rem;
  }
  
  .badge_2792 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .right_476a {
    max-width: 250px;
  }
}

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

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

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

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

.selected-78aa:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover-1dd6 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.hover-1dd6 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);
}

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

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

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

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

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

.hover-1dd6 strong {
  font-weight: 600;
  color: var(--color-text);
}

.hover-1dd6 a {
  color: var(--color-primary);
  text-decoration: underline;
}

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

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

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

.west_b518 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-under-5ad7 {
    grid-template-columns: 1fr;
  }
  
  .content-ea8a {
    font-size: 1.75rem;
  }
  
  .hover-1dd6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .content-ea8a {
    font-size: 1.5rem;
  }
  
  .hover-1dd6 h3 {
    font-size: 1.375rem;
  }
  
  .hover-1dd6 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.cool-5373 {
  flex-shrink: 0;
}

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

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

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

.row-815b,
.text_efda,
.status_7a0b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.row-815b thead,
.text_efda thead {
  background: var(--color-primary);
  color: white;
}

.row-815b th,
.row-815b td,
.text_efda th,
.text_efda td,
.status_7a0b th,
.status_7a0b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .row-815b th,
  .row-815b td,
  .text_efda th,
  .text_efda td,
  .status_7a0b th,
  .status_7a0b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .row-815b,
  .text_efda,
  .status_7a0b {
    min-width: 600px;
  }
}

.row-815b th,
.text_efda th,
.status_7a0b th {
  font-weight: 600;
}

.row-815b tbody tr:hover,
.text_efda tbody tr:hover,
.status_7a0b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.short-cf94 h4 {
  color: white;
}

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

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

.feature-blue-af54:last-child {
  border-bottom: none;
}

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

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

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

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

.badge-760d:hover {
  text-decoration: underline;
}

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

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

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

.light-cc47 {
  font-weight: 600;
  color: white;
}

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

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

.nav-cb7e {
  color: #4caf50;
}

.module-d144 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .gradient-advanced-03ae {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.upper_7285 .steel_82af {
  width: 100%;
  background: white;
}

.sort_5bb1 .steel_82af {
  color: #667eea;
}

.thumbnail-5af0 .steel_82af {
  color: #f5576c;
}

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

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

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

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

.chip-pro-b3c1 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.row-in-f57c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .chip-pro-b3c1 {
    padding: var(--space-md);
  }
  
  .row-in-f57c {
    padding: var(--space-md);
  }
  
  .dirty_cd20 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.modal-narrow-869a ol,
.modal-narrow-869a ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.modal-narrow-869a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.orange_737a,
.element_first_2877,
.pattern_05f7,
.outer_3096 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.menu-wood-3b1e {
  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) {
  .menu-wood-3b1e {
    font-size: 0.625rem;
  }
}

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

.grid-in-e0d9:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

@media (max-width: 768px) {
  .photo-selected-32ff {
    grid-template-columns: 1fr;
  }
}

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

.footer-693b {
  border-color: var(--color-success);
}

.secondary-31ef {
  border-color: var(--color-warning);
}

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

.footer-693b .fresh_3074 {
  background: #e8f5e9;
  color: var(--color-success);
}

.secondary-31ef .fresh_3074 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-095d {
  text-align: center;
}

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

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

.bronze_6ae2 .light-cc47 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-middle-4c87 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.mask_outer_ac33 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

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

.down_3e2f {
  text-align: right;
}

.down_3e2f .highlight-2488 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.hidden-7572 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.box-warm-33c5 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.link_basic_af13[aria-expanded="true"] .article-pro-842f {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.logo-black-80b7 {
  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);
}

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

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

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

.left-8a05,
.clean-a65b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.left-8a05 h4,
.clean-a65b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.left-8a05 ul,
.clean-a65b ul {
  list-style: none;
  padding: 0;
}

.left-8a05 li,
.clean-a65b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.simple_082a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-last-094c {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.module-last-094c .element_tall_2481 {
  color: #4caf50;
  font-size: 0.875rem;
}

.avatar-upper-0360 {
  list-style: none;
  padding: 0;
}

.avatar-upper-0360 li {
  margin-bottom: var(--space-xs);
}

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

.avatar-upper-0360 a:hover {
  color: white;
}

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

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

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

.progress_fe29 a:hover {
  color: white;
}

.grid-bright-9c14 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .grid-bright-9c14 {
    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;
  }
  
  .frame-hot-f820 {
    font-size: 2rem;
  }
  
  .content-ea8a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hot-5ea1,
  .surface-under-5ad7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .disabled_motion_501f,
  .photo-selected-32ff,
  .gradient-advanced-03ae,
  .light-78e1,
  .shade_aafd,
  .avatar-7525,
  .filter-yellow-9493,
  .modal_6f8e {
    grid-template-columns: 1fr;
  }
  
  .wrapper_63ac {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .advanced_dd6b {
    padding: var(--space-lg) 0;
  }
  
  .hard_c762 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hard_c762 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .steel_82af {
    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;
  }
  
  .wrapper_63ac {
    grid-template-columns: 1fr;
  }
  
  .gradient-0acb,
  .hidden-9610,
  .preview_slow_b93c {
    flex-direction: column;
    width: 100%;
  }
  
  .slider_48eb,
  .description-40c2,
  .gradient-0acb .steel_82af,
  .hidden-9610 .steel_82af {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .frame-hot-f820 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .content-ea8a {
    font-size: 1.375rem;
  }
  
  .cold_796b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .down_6031,
  .module-4de4,
  .list_cold_c138,
  .focus-dirty-0eda,
  .detail_solid_8b37 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .menu-wood-3b1e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .layout-466d {
    gap: var(--space-xs);
  }
  
  .feature_beb5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .yellow_7fc9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .bronze_6ae2 {
    width: 150px;
    height: 150px;
  }
  
  .basic_2957 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pattern-silver-4beb,
  .description_46f5,
  .gradient-0acb,
  .yellow-c973,
  .current-2068,
  .pink_ffe2,
  .motion-ae84 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .advanced_dd6b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 69c8 */
.promo-block-u6 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
