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

.fixed-231a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.filter-focused-c35b,
header,
.primary-silver-1f3a,
.logo-f00e,
.steel-131f,
.banner_e1bd,
.shadow-focused-26c5,
.menu_black_2433,
.bronze-a7d9 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.filter-focused-c35b {
  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);
}

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

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

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

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

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

.action-598c img {
  height: 36px;
  width: auto;
  display: block;
}

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

.picture_f0a8 {
  flex: 1;
}

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

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

.top-7aea:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.top-7aea.layout-9964 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.notice_clean_7713 {
  position: relative;
}

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

.background-8330 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.column-action-13f7 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.article-41d1 svg {
  flex-shrink: 0;
}

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

.middle-44a9: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);
}

.middle-44a9 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .picture_f0a8 {
    display: none;
  }
  
  .complex_527d {
    display: flex;
  }
  
  .warm-22cb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .article-41d1,
  .middle-44a9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .notice_clean_7713 {
    position: relative;
  }
  
  .secondary-a04c {
    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;
  }
  
  .background-8330[aria-expanded="true"] + .secondary-a04c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .badge_left_2a1e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .column-action-13f7 {
    gap: 8px;
  }
  
  .article-41d1 {
    display: none;
  }
  
  .middle-44a9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .action-598c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.basic-7520 svg {
  flex-shrink: 0;
}

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

.basic-7520 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.gradient-e460 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.border-95a6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .menu_525d {
    grid-template-columns: 1fr;
  }
  
  .right-439f {
    font-size: 1.75rem;
  }
  
  .content_wood_6758 {
    order: -1;
    max-width: 100%;
  }
  
  .paragraph_96a6 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .right-439f {
    font-size: 1.5rem;
  }
  
  .copper-3fd7 {
    font-size: 1rem;
  }
  
  .gradient-e460 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .paragraph_96a6 {
    max-width: 250px;
  }
}

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

.list-focused-631e {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-fda8 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.shadow-focused-26c5 {
  padding: var(--space-xxl) 0;
}

.popup-52d4 {
  background: var(--color-bg-section);
}

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

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

.slow-4f21 {
  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);
}

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

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

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

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

.media-38dc img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.media-38dc 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);
}

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

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

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

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

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

.media-38dc strong {
  font-weight: 600;
  color: var(--color-text);
}

.media-38dc a {
  color: var(--color-primary);
  text-decoration: underline;
}

.media-38dc a:hover {
  color: var(--color-primary-dark);
}

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

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

.box-1685 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) {
  .disabled_cac9 {
    grid-template-columns: 1fr;
  }
  
  .slow-4f21 {
    font-size: 1.75rem;
  }
  
  .media-38dc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .slow-4f21 {
    font-size: 1.5rem;
  }
  
  .media-38dc h3 {
    font-size: 1.375rem;
  }
  
  .media-38dc h4 {
    font-size: 1.125rem;
  }
}

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

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

.text-fast-821e {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.label-30ff {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.photo-c333 {
  flex-shrink: 0;
}

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

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

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

.icon-588a,
.active_ac8e,
.south_992d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.icon-588a thead,
.active_ac8e thead {
  background: var(--color-primary);
  color: white;
}

.icon-588a th,
.icon-588a td,
.active_ac8e th,
.active_ac8e td,
.south_992d th,
.south_992d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .icon-588a th,
  .icon-588a td,
  .active_ac8e th,
  .active_ac8e td,
  .south_992d th,
  .south_992d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .icon-588a,
  .active_ac8e,
  .south_992d {
    min-width: 600px;
  }
}

.icon-588a th,
.active_ac8e th,
.south_992d th {
  font-weight: 600;
}

.icon-588a tbody tr:hover,
.active_ac8e tbody tr:hover,
.south_992d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.item_east_ebb7 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.banner-stone-1c93 {
  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);
}

.banner-stone-1c93 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.bronze-ff98 {
  font-weight: 600;
  color: white;
}

.focused-73f6 {
  list-style: none;
  padding: 0;
}

.focused-73f6 li {
  padding: var(--space-xs) 0;
}

.full_e7f8 {
  color: #4caf50;
}

.first-4e71 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.blue-82d6 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.slow-311e {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.east-c7af .card-83d2 {
  width: 100%;
  background: white;
}

.primary-down-2b31 .card-83d2 {
  color: #667eea;
}

.first-8942 .card-83d2 {
  color: #f5576c;
}

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

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

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

.icon-small-b4e8 {
  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);
}

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

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

@media (max-width: 768px) {
  .surface_green_5638 {
    padding: var(--space-md);
  }
  
  .static-3877 {
    padding: var(--space-md);
  }
  
  .footer_thick_99e8 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.breadcrumb-pink-3ecf,
.menu-over-e25b,
.card_south_fdad,
.middle_7329 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.card-left-d635 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.outline-36d1 {
  border-color: var(--color-success);
}

.filter-right-412b {
  border-color: var(--color-warning);
}

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

.outline-36d1 .image_red_3777 {
  background: #e8f5e9;
  color: var(--color-success);
}

.filter-right-412b .image_red_3777 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.down_3f9e {
  text-align: center;
}

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

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

.widget_0e3a .bronze-ff98 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.tabs-large-582b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.logo-39c5 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.list-short-0c49 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.heading-5c51 {
  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;
}

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

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

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

.popup-hard-8167 {
  text-align: right;
}

.popup-hard-8167 .small-e5e9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.status-plasma-9a71 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.element-bottom-2fb4 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

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

.caption-large-6d86 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

.focus-yellow-6a11 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.up-719c {
  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);
}

.up-719c:hover {
  background: var(--color-bg-alt);
}

.photo-8bb1 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.up-719c[aria-expanded="true"] .photo-8bb1 {
  transform: rotate(180deg);
}

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

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

.tag-in-70ba ul,
.tag-in-70ba ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.tag-in-70ba li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.disabled-376a {
  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);
}

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

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

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

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

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

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

.icon_e47b h4,
.bottom_a4ba h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.icon_e47b ul,
.bottom_a4ba ul {
  list-style: none;
  padding: 0;
}

.icon_e47b li,
.bottom_a4ba li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.shade-clean-a953 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.middle-2b9d .modal_1180 {
  color: #4caf50;
  font-size: 0.875rem;
}

.frame-action-1973 {
  list-style: none;
  padding: 0;
}

.frame-action-1973 li {
  margin-bottom: var(--space-xs);
}

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

.frame-action-1973 a:hover {
  color: white;
}

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

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

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

.sort_focused_2cbd a:hover {
  color: white;
}

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

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

.sidebar-tiny-b014 a {
  color: #4caf50;
  text-decoration: none;
}

.accent-north-78e0 {
  font-size: 0.75rem;
  color: #666666;
}

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

.picture-short-6edc {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.picture-short-6edc:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gallery_e7da {
    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;
  }
  
  .right-439f {
    font-size: 2rem;
  }
  
  .slow-4f21 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .menu_525d,
  .disabled_cac9 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sort_6958,
  .search-clean-b158,
  .slow-4659,
  .hot-c1a0,
  .photo-selected-75de,
  .banner-4e1b,
  .menu-complex-cc7e,
  .thumbnail_9a22 {
    grid-template-columns: 1fr;
  }
  
  .main_96cd {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .shadow-focused-26c5 {
    padding: var(--space-lg) 0;
  }
  
  .image-fda8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .image-fda8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .card-83d2 {
    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;
  }
  
  .main_96cd {
    grid-template-columns: 1fr;
  }
  
  .border-95a6,
  .hidden-11a1,
  .aside-yellow-b702 {
    flex-direction: column;
    width: 100%;
  }
  
  .article_094e,
  .fast_70bc,
  .border-95a6 .card-83d2,
  .hidden-11a1 .card-83d2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .right-439f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slow-4f21 {
    font-size: 1.375rem;
  }
  
  .dark-db2a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .text-8157,
  .hard_1d45,
  .thumbnail-48ce,
  .layout-white-4218,
  .table-a678 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .small-d015 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .article_hard_eff4 {
    gap: var(--space-xs);
  }
  
  .basic-7520 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner-stone-1c93 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .widget_0e3a {
    width: 150px;
    height: 150px;
  }
  
  .focus-new-dc0a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .filter-focused-c35b,
  .primary-silver-1f3a,
  .border-95a6,
  .texture_cold_9859,
  .menu_black_2433,
  .bronze-a7d9,
  .complex_527d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .shadow-focused-26c5 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 501e */
.promo-block-b1 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.3;
}
