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

.column-center-e202:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.search-a970):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.search-a970,
header,
.basic_5dd0,
.content-fluid-d91b,
.tabs-bright-ff13,
.secondary_gold_a82c,
.highlight-d4a3,
.message_over_133f,
.main_inner_65c8 {
  max-width: none;
}

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

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

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

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

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

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

.border-top-722d img {
  height: 36px;
  width: auto;
  display: block;
}

.frame-huge-a63f {
  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;
}

.dropdown-silver-d31d {
  flex: 1;
}

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

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

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

.aside_first_c4d5.fn-active-74b3 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.table-3c8c {
  position: relative;
}

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

.main-out-ae63 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.tabs-smooth-976d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .dropdown-silver-d31d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .dropdown-silver-d31d.dropdown-black-5923 {
    display: block;
    right: 0;
  }
  
  .card_9319 {
    flex-direction: column;
    gap: 0;
  }
  
  .aside_first_c4d5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .dropdown-silver-d31d::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;
  }
  
  .dropdown-silver-d31d.dropdown-black-5923::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .dropdown-silver-d31d {
    display: none;
  }
  
  .paper_42ec {
    display: flex;
  }
  
  .frame-huge-a63f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tabs-smooth-976d,
  .stale_4c19 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .table-3c8c {
    position: relative;
  }
  
  .active_544e {
    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;
  }
  
  .main-out-ae63[aria-expanded="true"] + .active_544e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .main_85a2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .banner-1e81 {
    gap: 8px;
  }
  
  .tabs-smooth-976d {
    display: none;
  }
  
  .stale_4c19 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .border-top-722d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.title-ffd8 svg {
  flex-shrink: 0;
}

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

.title-ffd8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.module-old-2755 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.dynamic-0db8 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.complex-7f17 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.over-7dca {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .chip_50ae {
    grid-template-columns: 1fr;
  }
  
  .notification_9de6 {
    font-size: 1.75rem;
  }
  
  .complex-7f17 {
    order: -1;
    max-width: 100%;
  }
  
  .over-7dca {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification_9de6 {
    font-size: 1.5rem;
  }
  
  .container_f9e2 {
    font-size: 1rem;
  }
  
  .pattern_fe5f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .over-7dca {
    max-width: 250px;
  }
}

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

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

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

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

.header-south-7877:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.form-south-ea2c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.photo-narrow-d51a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.accent-bronze-3f27 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.input-f64e 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;
}

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

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

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

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

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

.overlay-hot-1d4d {
  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);
}

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

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

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

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

.header-inner-7863 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.header-inner-7863 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);
}

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

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

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

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

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

.header-inner-7863 strong {
  font-weight: 600;
  color: var(--color-text);
}

.header-inner-7863 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.header-inner-7863 a:hover {
  color: var(--color-primary-dark);
}

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

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

.image_790e 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) {
  .image-solid-f438 {
    grid-template-columns: 1fr;
  }
  
  .overlay-hot-1d4d {
    font-size: 1.75rem;
  }
  
  .header-inner-7863 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .overlay-hot-1d4d {
    font-size: 1.5rem;
  }
  
  .header-inner-7863 h3 {
    font-size: 1.375rem;
  }
  
  .header-inner-7863 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.right-ed80 {
  flex-shrink: 0;
}

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

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

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

.under_a2b1,
.current-8e5c,
.backdrop-upper-8271 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.under_a2b1 thead,
.current-8e5c thead {
  background: var(--color-primary);
  color: white;
}

.under_a2b1 th,
.under_a2b1 td,
.current-8e5c th,
.current-8e5c td,
.backdrop-upper-8271 th,
.backdrop-upper-8271 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .under_a2b1 th,
  .under_a2b1 td,
  .current-8e5c th,
  .current-8e5c td,
  .backdrop-upper-8271 th,
  .backdrop-upper-8271 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .under_a2b1,
  .current-8e5c,
  .backdrop-upper-8271 {
    min-width: 600px;
  }
}

.under_a2b1 th,
.current-8e5c th,
.backdrop-upper-8271 th {
  font-weight: 600;
}

.under_a2b1 tbody tr:hover,
.current-8e5c tbody tr:hover,
.backdrop-upper-8271 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.shade-light-5d02 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.background-wood-0486 h4 {
  color: white;
}

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

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

.gold-9cf4:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.lite-3a38 {
  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);
}

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

.border-focused-906a {
  font-weight: 600;
  color: white;
}

.slider-rough-7f14 {
  list-style: none;
  padding: 0;
}

.slider-rough-7f14 li {
  padding: var(--space-xs) 0;
}

.shadow_yellow_9e6b {
  color: #4caf50;
}

.article_new_1bf7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-focused-906a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.main-complex-fce8 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.layout-461b .next_5a61 {
  width: 100%;
  background: white;
}

.mask_dark_e5de .next_5a61 {
  color: #667eea;
}

.dropdown_upper_bc56 .next_5a61 {
  color: #f5576c;
}

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

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

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

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

.gradient-static-9470 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .gradient-static-9470 {
    padding: var(--space-md);
  }
  
  .easy_b2f7 {
    padding: var(--space-md);
  }
  
  .list-f2f7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.over-9f45 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.wide_5aa9,
.nav-4397,
.old-83d1,
.lower-a79e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.pattern-solid-069a {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag_up_ce9d .light_5ae9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.border_lite_4766 .light_5ae9 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-2ba5 {
  margin-top: var(--space-xxl);
}

.paragraph-white-1a2e {
  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);
}

.green-ca57 {
  text-align: center;
}

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

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

.secondary_east_2bd7 .border-focused-906a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-5f1b {
  border: 2px solid #4caf50;
}

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

.alert-rough-848f {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.center_ea37 {
  text-align: right;
}

.center_ea37 .info-black-c2d8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.modal-thick-4efc {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.narrow-b4d5 {
  background: #e8f5e9;
  color: #2e7d32;
}

.avatar-west-ec2e {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.panel-large-976c span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.list-583e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-basic-9e62 ul,
.hero-basic-9e62 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.hero-basic-9e62 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.shadow-in-5cd5,
.cold-5f80 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.shadow-in-5cd5 h4,
.cold-5f80 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.shadow-in-5cd5 ul,
.cold-5f80 ul {
  list-style: none;
  padding: 0;
}

.shadow-in-5cd5 li,
.cold-5f80 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.video-west-5988 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.nav-pink-3faf {
  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);
}

.layout_4b76 {
  font-style: italic;
}

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

.message-slow-e3e3 {
  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;
}

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

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

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

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

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

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

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

.dim-84e0 {
  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);
}

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.pro_c2d9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.hidden-c6f6 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.hidden-c6f6 a:hover {
  color: white;
}

.video-tall-7777 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.video-tall-7777 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.video-tall-7777 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.list-fe2d {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.list-fe2d a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.list-fe2d a:hover {
  color: white;
}

.element_83ea > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.white-180f .dynamic-0db8 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.overlay_fast_7bcc a:hover {
  color: white;
}

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

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

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

.middle_1ba1 a:hover {
  color: white;
}

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

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

.menu-cool-f920 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.surface_cold_ec39 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.summary-over-3cef {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.summary-over-3cef:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .element_83ea {
    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;
  }
  
  .notification_9de6 {
    font-size: 2rem;
  }
  
  .overlay-hot-1d4d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .chip_50ae,
  .image-solid-f438 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hover-29db,
  .focus_medium_90fc,
  .in-2e4d,
  .prev_b1b8,
  .primary-2abb,
  .block_white_e7bf,
  .outline-88e9,
  .input_soft_d4c4,
  .pro_c2d9 {
    grid-template-columns: 1fr;
  }
  
  .video_7421 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .highlight-d4a3 {
    padding: var(--space-lg) 0;
  }
  
  .input-f64e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .input-f64e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .next_5a61 {
    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;
  }
  
  .video_7421 {
    grid-template-columns: 1fr;
  }
  
  .full_9bc1,
  .module_206d,
  .banner_b6a8 {
    flex-direction: column;
    width: 100%;
  }
  
  .form-south-ea2c,
  .photo-narrow-d51a,
  .full_9bc1 .next_5a61,
  .module_206d .next_5a61 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification_9de6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .overlay-hot-1d4d {
    font-size: 1.375rem;
  }
  
  .summary_d679 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .copper-7eef,
  .right-70a3,
  .widget_99d3,
  .active_up_644e,
  .stone_30cb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .border_purple_2ddb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .search_f93c {
    gap: var(--space-xs);
  }
  
  .title-ffd8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .lite-3a38 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .secondary_east_2bd7 {
    width: 150px;
    height: 150px;
  }
  
  .logo-9ced {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .search-a970,
  .basic_5dd0,
  .full_9bc1,
  .message-slow-e3e3,
  .message_over_133f,
  .main_inner_65c8,
  .paper_42ec {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .highlight-d4a3 {
    page-break-inside: avoid;
  }
}

/* css-noise: 4d39 */
.ghost-box-g7 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
