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

.white_8cf8:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.notice-5c05,
header,
.first-b16d,
.primary_20b3,
.hovered-0fc9,
.green_a6cd,
.card_cool_7022,
.gallery-7c06,
.out_5a51 {
  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
   ============================================ */
.notice-5c05 {
  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);
}

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

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

/* Scrolled state */
.notice-5c05.slider-d36b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.media-gas-7234 {
  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;
}

.new_1f9b {
  flex: 1;
}

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

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

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

.tiny-dbae.fn-active-c1c6 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.header-copper-d36d {
  position: relative;
}

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

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

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

.grid-blue-44e0 {
  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;
}

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

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

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

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

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

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

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

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

.logo-8e26 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.panel-light-6363[aria-expanded="true"] .main_aa9b:nth-child(2) {
  opacity: 0;
}

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

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

  .new_1f9b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .new_1f9b.box_a056 {
    display: block;
    right: 0;
  }
  
  .banner-62b2 {
    flex-direction: column;
    gap: 0;
  }
  
  .tiny-dbae {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .new_1f9b::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;
  }
  
  .new_1f9b.box_a056::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .new_1f9b {
    display: none;
  }
  
  .panel-light-6363 {
    display: flex;
  }
  
  .media-gas-7234 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .logo-8e26,
  .status_e7e4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .header-copper-d36d {
    position: relative;
  }
  
  .grid-blue-44e0 {
    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;
  }
  
  .simple_5d67[aria-expanded="true"] + .grid-blue-44e0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tooltip-feae {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .footer_b2af {
    gap: 8px;
  }
  
  .logo-8e26 {
    display: none;
  }
  
  .status_e7e4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .soft_7145 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.carousel_0aaf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.pro-7d07 a {
  color: var(--color-primary);
  text-decoration: none;
}

.pro-7d07 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  .hero-fast-75ba {
    grid-template-columns: 1fr;
  }
}

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

.description-3c53 {
  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;
}

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

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

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

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

.border-right-3477 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper-stale-f6bb {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .fresh_cfca {
    grid-template-columns: 1fr;
  }
  
  .banner_f0d5 {
    font-size: 1.75rem;
  }
  
  .border-right-3477 {
    order: -1;
    max-width: 100%;
  }
  
  .wrapper-stale-f6bb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .banner_f0d5 {
    font-size: 1.5rem;
  }
  
  .tabs_yellow_4663 {
    font-size: 1rem;
  }
  
  .pro-7d07 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wrapper-stale-f6bb {
    max-width: 250px;
  }
}

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

.caption-light-c8a9 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge-bccc {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.huge-bccc img {
  max-width: 100%;
  height: auto;
  display: block;
}

.huge-bccc pre,
.huge-bccc code {
  overflow-x: auto;
  max-width: 100%;
}

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

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

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

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

.huge-bccc ul,
.huge-bccc ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.huge-bccc li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

.huge-bccc a {
  color: var(--color-primary);
  text-decoration: underline;
}

.huge-bccc a:hover {
  color: var(--color-primary-dark);
}

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

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

.center-d574 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) {
  .gallery-red-afc2 {
    grid-template-columns: 1fr;
  }
  
  .narrow-dd38 {
    font-size: 1.75rem;
  }
  
  .huge-bccc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .narrow-dd38 {
    font-size: 1.5rem;
  }
  
  .huge-bccc h3 {
    font-size: 1.375rem;
  }
  
  .huge-bccc h4 {
    font-size: 1.125rem;
  }
}

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

.active-last-204f {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.down-721c {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.gradient-gold-05c0 {
  flex-shrink: 0;
}

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

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

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

.list_53d8,
.cool_3597,
.container_hovered_9525 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_53d8 thead,
.cool_3597 thead {
  background: var(--color-primary);
  color: white;
}

.list_53d8 th,
.list_53d8 td,
.cool_3597 th,
.cool_3597 td,
.container_hovered_9525 th,
.container_hovered_9525 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_53d8 th,
  .list_53d8 td,
  .cool_3597 th,
  .cool_3597 td,
  .container_hovered_9525 th,
  .container_hovered_9525 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_53d8,
  .cool_3597,
  .container_hovered_9525 {
    min-width: 600px;
  }
}

.list_53d8 th,
.cool_3597 th,
.container_hovered_9525 th {
  font-weight: 600;
}

.list_53d8 tbody tr:hover,
.cool_3597 tbody tr:hover,
.container_hovered_9525 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.layout-a072 h4 {
  color: white;
}

.logo-thick-4c1b {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.purple-451e:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.pagination_inner_3183 {
  color: #4caf50;
}

.element-7a2b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.top-031d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-dfec .notification-2d90 {
  width: 100%;
  background: white;
}

.texture-plasma-c26a .notification-2d90 {
  color: #667eea;
}

.description_out_1c74 .notification-2d90 {
  color: #f5576c;
}

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

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

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

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

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

.content-lower-83cb {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .red-5d52 {
    padding: var(--space-md);
  }
  
  .content-lower-83cb {
    padding: var(--space-md);
  }
  
  .stale_a06b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.link_down_3ba6,
.background_simple_224b,
.video_262e,
.fast-f848 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.focus-small-f817 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

.logo-0f65 {
  border-color: var(--color-warning);
}

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

.surface_plasma_276d .sort_white_9a62 {
  background: #e8f5e9;
  color: var(--color-success);
}

.logo-0f65 .sort_white_9a62 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.alert-over-c44d {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.out-2191 {
  text-align: center;
}

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

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

.static-a107 .hover_fe3a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wide-11ab {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.hover-b747 {
  border: 2px solid #4caf50;
}

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

.item-motion-d57f {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.copper_70c1 {
  text-align: right;
}

.copper_70c1 .tooltip-1cf7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.upper-be79 {
  background: #e3f2fd;
  color: #1565c0;
}

.carousel-silver-4821 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.button_south_57d1 {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

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

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

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

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

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

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

.tabs-pro-17c6 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.frame_9132[aria-expanded="true"] .tabs-pro-17c6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer_4755,
.logo-new-c698 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.footer_4755 h4,
.logo-new-c698 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.footer_4755 ul,
.logo-new-c698 ul {
  list-style: none;
  padding: 0;
}

.footer_4755 li,
.logo-new-c698 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_light_3457 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.tooltip-motion-e9e3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.element_39cb .smooth-db04 {
  color: #4caf50;
  font-size: 0.875rem;
}

.box-bb28 {
  list-style: none;
  padding: 0;
}

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

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

.box-bb28 a:hover {
  color: white;
}

.frame-huge-e99c {
  list-style: none;
  padding: 0;
}

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

.frame-huge-e99c a {
  color: #b0b0b0;
  text-decoration: none;
}

.frame-huge-e99c a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .banner_f7f9 {
    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;
  }
  
  .banner_f0d5 {
    font-size: 2rem;
  }
  
  .narrow-dd38 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .fresh_cfca,
  .gallery-red-afc2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .button_west_d630,
  .image_warm_202b,
  .banner-silver-b3d5,
  .smooth-178b,
  .filter-1680,
  .paragraph-purple-5ede,
  .glass_d124,
  .header-edcb {
    grid-template-columns: 1fr;
  }
  
  .cool-e84d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .card_cool_7022 {
    padding: var(--space-lg) 0;
  }
  
  .widget_e844 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .widget_e844 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notification-2d90 {
    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;
  }
  
  .cool-e84d {
    grid-template-columns: 1fr;
  }
  
  .chip-0339,
  .north-c158,
  .filter-last-f32f {
    flex-direction: column;
    width: 100%;
  }
  
  .medium_8e0d,
  .disabled_2e2d,
  .chip-0339 .notification-2d90,
  .north-c158 .notification-2d90 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .banner_f0d5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .narrow-dd38 {
    font-size: 1.375rem;
  }
  
  .container_cc85 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .list-6ff3,
  .message-green-6948,
  .article-pink-f7a5,
  .list-8724,
  .logo-black-1d42 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hidden_silver_25f0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .soft-ceef {
    gap: var(--space-xs);
  }
  
  .carousel_0aaf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature_ec78 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .static-a107 {
    width: 150px;
    height: 150px;
  }
  
  .outline_motion_bf07 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notice-5c05,
  .first-b16d,
  .chip-0339,
  .dim_313a,
  .gallery-7c06,
  .out_5a51,
  .panel-light-6363 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .card_cool_7022 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6420 */
.widget-item-s9 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
