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

.middle_78a5:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.alert_full_01a0,
header,
.content-thick-dc0f,
.gallery-39b4,
.tiny-4313,
.gradient-4715,
.shade_dirty_5ade,
.filter-9ba7,
.copper_8de5 {
  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
   ============================================ */
.alert_full_01a0 {
  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);
}

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

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

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

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

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

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

.box-under-bc4d {
  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;
}

.header-lower-4b80 {
  flex: 1;
}

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

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

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

.box_pressed_a5cf.fn-active-eb0d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.fixed-9bc4 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.active-narrow-6ab0 {
  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;
}

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

.active-narrow-6ab0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .header-lower-4b80::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .header-lower-4b80.card_cf6c {
    display: block;
    right: 0;
  }
  
  .tabs_7eb4 {
    flex-direction: column;
    gap: 0;
  }
  
  .box_pressed_a5cf {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .header-lower-4b80::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;
  }
  
  .header-lower-4b80.card_cf6c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .header-lower-4b80 {
    display: none;
  }
  
  .video_pink_4c72 {
    display: flex;
  }
  
  .box-under-bc4d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active-narrow-6ab0,
  .heading_8f47 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .fixed-9bc4 {
    position: relative;
  }
  
  .label_inner_a698 {
    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;
  }
  
  .south_b6f8[aria-expanded="true"] + .label_inner_a698 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .search-5a48 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .stone-5b4a {
    gap: 8px;
  }
  
  .active-narrow-6ab0 {
    display: none;
  }
  
  .heading_8f47 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .form_middle_8be8 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.hero_ce74 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.pattern-lower-c1f5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.pattern-lower-c1f5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.section-black-c965 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.module-steel-47c7 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-b36a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .glass_9175 {
    grid-template-columns: 1fr;
  }
  
  .light-b89a {
    font-size: 1.75rem;
  }
  
  .module-steel-47c7 {
    order: -1;
    max-width: 100%;
  }
  
  .breadcrumb-b36a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .light-b89a {
    font-size: 1.5rem;
  }
  
  .panel-current-b962 {
    font-size: 1rem;
  }
  
  .pattern-lower-c1f5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .breadcrumb-b36a {
    max-width: 250px;
  }
}

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

.static-34e5 {
  background: var(--color-primary);
  color: white;
}

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

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

.item-brown-5946:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.huge-8a5c {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-33e6 {
  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);
}

.container-brown-f26c {
  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);
}

.caption-cold-1f73 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.sidebar-9e29 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.sidebar-9e29 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);
}

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

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

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

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

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

.sidebar-9e29 strong {
  font-weight: 600;
  color: var(--color-text);
}

.sidebar-9e29 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.sidebar-9e29 a:hover {
  color: var(--color-primary-dark);
}

.table-brown-3bb6 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.table-brown-3bb6 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) {
  .highlight-0f48 {
    grid-template-columns: 1fr;
  }
  
  .container-brown-f26c {
    font-size: 1.75rem;
  }
  
  .sidebar-9e29 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container-brown-f26c {
    font-size: 1.5rem;
  }
  
  .sidebar-9e29 h3 {
    font-size: 1.375rem;
  }
  
  .sidebar-9e29 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.box_b0a3 {
  flex-shrink: 0;
}

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

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

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

.caption_soft_0fd9,
.form-5047,
.logo-6fd4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.caption_soft_0fd9 thead,
.form-5047 thead {
  background: var(--color-primary);
  color: white;
}

.caption_soft_0fd9 th,
.caption_soft_0fd9 td,
.form-5047 th,
.form-5047 td,
.logo-6fd4 th,
.logo-6fd4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .caption_soft_0fd9 th,
  .caption_soft_0fd9 td,
  .form-5047 th,
  .form-5047 td,
  .logo-6fd4 th,
  .logo-6fd4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .caption_soft_0fd9,
  .form-5047,
  .logo-6fd4 {
    min-width: 600px;
  }
}

.caption_soft_0fd9 th,
.form-5047 th,
.logo-6fd4 th {
  font-weight: 600;
}

.caption_soft_0fd9 tbody tr:hover,
.form-5047 tbody tr:hover,
.logo-6fd4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.media-227a h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.simple-fbf4 {
  font-weight: 600;
  color: white;
}

.label-caa9 {
  list-style: none;
  padding: 0;
}

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

.bronze_3b50 {
  color: #4caf50;
}

.list-062e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.simple-875e {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.fixed_1dd9 .tooltip-0127 {
  width: 100%;
  background: white;
}

.tag-bc56 .tooltip-0127 {
  color: #667eea;
}

.selected-48f5 .tooltip-0127 {
  color: #f5576c;
}

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

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

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

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

.focus-red-d8e3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .focus-red-d8e3 {
    padding: var(--space-md);
  }
  
  .accordion_f9c5 {
    padding: var(--space-md);
  }
  
  .rough_725a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.input_simple_8fbf,
.filter_32aa,
.mask_6705,
.card_stone_a35c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.label-0bc2 {
  border-color: var(--color-success);
}

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

.dropdown-05d8 {
  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);
}

.label-0bc2 .dropdown-05d8 {
  background: #e8f5e9;
  color: var(--color-success);
}

.warm_1b33 .dropdown-05d8 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_aa8b {
  text-align: center;
}

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

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

.widget_cool_1e02 .simple-fbf4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.button-purple-8a54 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.title-0a0b {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.avatar-4b1b {
  border: 2px solid #4caf50;
}

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

.modal-short-a534 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.accent-bronze-65db {
  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;
}

.preview-full-05a6 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.gallery-062c {
  text-align: right;
}

.gallery-062c .message_ffc8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.orange-3e3e li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.detail-b9d1,
.texture-d149 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.detail-b9d1 h4,
.texture-d149 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.detail-b9d1 ul,
.texture-d149 ul {
  list-style: none;
  padding: 0;
}

.detail-b9d1 li,
.texture-d149 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.module-8bb0 ul {
  list-style: none;
  padding: 0;
}

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

.frame-tiny-02ad {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.easy_4bae {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-7be1 {
  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) */
.mask_63b6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.focus-hard-cd16 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-hard-cd16 li {
  margin-bottom: var(--space-xs);
}

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

.focus-hard-cd16 a:hover {
  color: white;
}

.west-630f {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.west-630f 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);
}

.west-630f a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.fixed-ee42 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.fixed-ee42 a:hover {
  color: white;
}

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

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

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

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

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

.fresh_d88f .section-black-c965 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.status_advanced_17e6 a:hover {
  color: white;
}

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

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

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

.chip_62c4 a:hover {
  color: white;
}

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

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

.detail-large-2084 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.fixed-20b5:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .item_19f9 {
    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;
  }
  
  .light-b89a {
    font-size: 2rem;
  }
  
  .container-brown-f26c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .glass_9175,
  .highlight-0f48 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focused-9724,
  .out_014e,
  .primary-right-cd5c,
  .section-purple-abfa,
  .summary_lower_1bdf,
  .hidden-clean-3291,
  .focus_220d,
  .accent-7be1,
  .mask_63b6 {
    grid-template-columns: 1fr;
  }
  
  .badge_a2dc {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .shade_dirty_5ade {
    padding: var(--space-lg) 0;
  }
  
  .rough_8cf5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .rough_8cf5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tooltip-0127 {
    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;
  }
  
  .badge_a2dc {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-d068,
  .green-cdc2,
  .center_5761 {
    flex-direction: column;
    width: 100%;
  }
  
  .form-d44f,
  .huge-8a5c,
  .thumbnail-d068 .tooltip-0127,
  .green-cdc2 .tooltip-0127 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .light-b89a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .container-brown-f26c {
    font-size: 1.375rem;
  }
  
  .shade_516c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .glass_f6f7,
  .carousel_white_a8d3,
  .logo_bright_cc21,
  .advanced_3ada,
  .large-6ad4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .image_stale_583f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .banner-ab0f {
    gap: var(--space-xs);
  }
  
  .hero_ce74 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .selected_048d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .widget_cool_1e02 {
    width: 150px;
    height: 150px;
  }
  
  .border_a727 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .alert_full_01a0,
  .content-thick-dc0f,
  .thumbnail-d068,
  .layout_solid_58fd,
  .filter-9ba7,
  .copper_8de5,
  .video_pink_4c72 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .shade_dirty_5ade {
    page-break-inside: avoid;
  }
}

/* css-noise: c453 */
.ghost-box-u6 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
