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

.out_568f:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.active-dcd2,
header,
.copper_a130,
.component_left_cca2,
.grid-warm-b842,
.mini-3141,
.carousel_bright_a92f,
.avatar_cold_9915,
.background_8060 {
  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
   ============================================ */
.active-dcd2 {
  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);
}

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

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

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

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

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

.active-a020 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.blue_f29d {
  flex: 1;
}

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

.frame-fast-3d28 {
  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);
}

.frame-fast-3d28:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.frame-fast-3d28.fn-active-1ee7 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.hover-3100 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.media_full_5055 svg {
  flex-shrink: 0;
}

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

.sidebar-5f65: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);
}

.sidebar-5f65 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .blue_f29d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .blue_f29d.green-1422 {
    display: block;
    right: 0;
  }
  
  .banner_stale_12e4 {
    flex-direction: column;
    gap: 0;
  }
  
  .frame-fast-3d28 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .blue_f29d::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;
  }
  
  .blue_f29d.green-1422::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .blue_f29d {
    display: none;
  }
  
  .black_1561 {
    display: flex;
  }
  
  .secondary_hard_1652 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .media_full_5055,
  .sidebar-5f65 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hover-3100 {
    position: relative;
  }
  
  .cool_d48c {
    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;
  }
  
  .text_64fb[aria-expanded="true"] + .cool_d48c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .list-prev-1ef5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .fluid_b032 {
    gap: 8px;
  }
  
  .media_full_5055 {
    display: none;
  }
  
  .sidebar-5f65 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .active-a020 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.black-eb18 svg {
  flex-shrink: 0;
}

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

.black-eb18 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.content-dim-d6e1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.content-dim-d6e1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.next-61d2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .notice-88f5 {
    grid-template-columns: 1fr;
  }
  
  .slider_46da {
    font-size: 1.75rem;
  }
  
  .tiny_a736 {
    order: -1;
    max-width: 100%;
  }
  
  .alert_current_2b36 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .slider_46da {
    font-size: 1.5rem;
  }
  
  .hot_7d2a {
    font-size: 1rem;
  }
  
  .content-dim-d6e1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .alert_current_2b36 {
    max-width: 250px;
  }
}

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

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

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

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

.fast-324d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.label-581c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.highlight-south-4ee5 {
  list-style: none;
  counter-reset: toc-counter;
}

.highlight-south-4ee5 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.highlight-south-4ee5 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.highlight-south-4ee5 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.highlight-south-4ee5 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

.table-2f2b {
  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);
}

.gallery-stale-37fb {
  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);
}

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

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

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

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

.item-59a8 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.item-59a8 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);
}

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

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

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

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

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

.item-59a8 strong {
  font-weight: 600;
  color: var(--color-text);
}

.item-59a8 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.item-59a8 a:hover {
  color: var(--color-primary-dark);
}

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

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

.notification_0794 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) {
  .shadow-b553 {
    grid-template-columns: 1fr;
  }
  
  .gallery-stale-37fb {
    font-size: 1.75rem;
  }
  
  .item-59a8 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-stale-37fb {
    font-size: 1.5rem;
  }
  
  .item-59a8 h3 {
    font-size: 1.375rem;
  }
  
  .item-59a8 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.main-hovered-f75b {
  flex-shrink: 0;
}

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

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

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

.gallery_16c1,
.aside-cold-8df8,
.center_8df8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery_16c1 thead,
.aside-cold-8df8 thead {
  background: var(--color-primary);
  color: white;
}

.gallery_16c1 th,
.gallery_16c1 td,
.aside-cold-8df8 th,
.aside-cold-8df8 td,
.center_8df8 th,
.center_8df8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gallery_16c1 th,
  .gallery_16c1 td,
  .aside-cold-8df8 th,
  .aside-cold-8df8 td,
  .center_8df8 th,
  .center_8df8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gallery_16c1,
  .aside-cold-8df8,
  .center_8df8 {
    min-width: 600px;
  }
}

.gallery_16c1 th,
.aside-cold-8df8 th,
.center_8df8 th {
  font-weight: 600;
}

.gallery_16c1 tbody tr:hover,
.aside-cold-8df8 tbody tr:hover,
.center_8df8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.simple-62dd h4 {
  color: white;
}

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

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

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

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

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

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

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

.main-4313:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.text_blue_41ed {
  color: #4caf50;
}

.cold_2176 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic_1902 .widget-ee1b {
  width: 100%;
  background: white;
}

.dark_57a7 .widget-ee1b {
  color: #667eea;
}

.mask_3ac1 .widget-ee1b {
  color: #f5576c;
}

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

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

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

.description-plasma-b3fa {
  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);
}

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

.bright-19da {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .action_71ed {
    padding: var(--space-md);
  }
  
  .bright-19da {
    padding: var(--space-md);
  }
  
  .medium-be61 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tabs-2251,
.avatar_e4c2,
.gallery_44ca,
.accordion-2372 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.avatar-warm-1a86 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.section-4f54:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.nav-a2ce .bright_f6f3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.fast_4114 .bright_f6f3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.mask-233b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.badge-bottom-606e {
  margin-top: var(--space-xxl);
}

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

.description-old-f18b {
  text-align: center;
}

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

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

.container_dim_f928 .detail_brown_edb8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.fast-241b p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.frame-dark-2eca {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.full-ffd1 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.paragraph-clean-3a51 {
  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;
}

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

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

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

.pro_e928 {
  text-align: right;
}

.pro_e928 .large-493e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.primary-b3f2 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

.shade-west-2a20 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.component-white-75c7 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

.overlay-selected-9464 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.description_pink_a837,
.grid-010c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.description_pink_a837 h4,
.grid-010c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.description_pink_a837 ul,
.grid-010c ul {
  list-style: none;
  padding: 0;
}

.description_pink_a837 li,
.grid-010c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.bright-200f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.icon_6c14 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_new_af1c .accordion_e59b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.alert_a440 a:hover {
  color: white;
}

.notice-c490 {
  list-style: none;
  padding: 0;
}

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

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

.notice-c490 a:hover {
  color: white;
}

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

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

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

.highlight-up-1cab {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.notification-8a3c:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accordion_e44f {
    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;
  }
  
  .slider_46da {
    font-size: 2rem;
  }
  
  .gallery-stale-37fb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .notice-88f5,
  .shadow-b553 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .bronze-de7b,
  .top_b996,
  .blue-30c3,
  .content-d4b7,
  .focused-0878,
  .carousel-1ed2,
  .title_3d9c,
  .grid-easy-0977 {
    grid-template-columns: 1fr;
  }
  
  .stone-84b9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .carousel_bright_a92f {
    padding: var(--space-lg) 0;
  }
  
  .highlight-south-4ee5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .highlight-south-4ee5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .widget-ee1b {
    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;
  }
  
  .stone-84b9 {
    grid-template-columns: 1fr;
  }
  
  .next-61d2,
  .preview_green_5c91,
  .dirty_7e86 {
    flex-direction: column;
    width: 100%;
  }
  
  .label-581c,
  .alert_ad7a,
  .next-61d2 .widget-ee1b,
  .preview_green_5c91 .widget-ee1b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .slider_46da {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gallery-stale-37fb {
    font-size: 1.375rem;
  }
  
  .sort_278c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .chip_north_67ad,
  .outline_cool_ffaa,
  .bottom_6a49,
  .backdrop_2c9c,
  .breadcrumb-iron-42b6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gallery_last_20fb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dim_86e5 {
    gap: var(--space-xs);
  }
  
  .black-eb18 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .caption-f02b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .container_dim_f928 {
    width: 150px;
    height: 150px;
  }
  
  .search_0e70 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active-dcd2,
  .copper_a130,
  .next-61d2,
  .huge_25fa,
  .avatar_cold_9915,
  .background_8060,
  .black_1561 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .carousel_bright_a92f {
    page-break-inside: avoid;
  }
}

/* css-noise: 9cb8 */
.promo-block-l4 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
