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

.picture-e9e3:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tag-cce2,
header,
.photo_inner_f238,
.hidden_9bf0,
.table_d641,
.video-8b5d,
.solid-830f,
.list-mini-c139,
.highlight-899d {
  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
   ============================================ */
.tag-cce2 {
  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);
}

.hero-solid-3104 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.large-631a {
  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;
}

.overlay-5940 {
  flex: 1;
}

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

.summary-cool-815b {
  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);
}

.summary-cool-815b:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.summary-cool-815b.fn-active-1c44 {
  background: var(--color-primary);
  color: white;
}

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

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

.smooth-61aa svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.badge-d609 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .overlay-5940::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .overlay-5940.gradient-down-a6ec {
    display: block;
    right: 0;
  }
  
  .inner_4505 {
    flex-direction: column;
    gap: 0;
  }
  
  .summary-cool-815b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .overlay-5940::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;
  }
  
  .overlay-5940.gradient-down-a6ec::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .overlay-5940 {
    display: none;
  }
  
  .tertiary_9948 {
    display: flex;
  }
  
  .large-631a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .badge-d609,
  .tooltip_pink_2525 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .widget_active_8bd4 {
    position: relative;
  }
  
  .table_d5a1 {
    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;
  }
  
  .smooth-61aa[aria-expanded="true"] + .table_d5a1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .thumbnail-gas-609c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .next_c2c1 {
    gap: 8px;
  }
  
  .badge-d609 {
    display: none;
  }
  
  .tooltip_pink_2525 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .pink_de39 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.left-3ec3 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.left-3ec3 svg {
  flex-shrink: 0;
}

.left-3ec3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.left-3ec3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-cool-a20d {
  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;
}

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

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

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

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

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

.layout-red-35bf {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .main-9105 {
    grid-template-columns: 1fr;
  }
  
  .caption-08ee {
    font-size: 1.75rem;
  }
  
  .component_b014 {
    order: -1;
    max-width: 100%;
  }
  
  .layout-red-35bf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .caption-08ee {
    font-size: 1.5rem;
  }
  
  .yellow_4cdf {
    font-size: 1rem;
  }
  
  .media_full_d23a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .layout-red-35bf {
    max-width: 250px;
  }
}

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

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

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

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

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

.card-stale-5e96 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.card-stale-5e96:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.header-dynamic-04c6 {
  list-style: none;
  counter-reset: toc-counter;
}

.header-dynamic-04c6 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.header-dynamic-04c6 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);
}

.header-dynamic-04c6 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;
}

.header-dynamic-04c6 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.widget-glass-49ef {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

.breadcrumb-easy-3bdd {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.breadcrumb-easy-3bdd img {
  max-width: 100%;
  height: auto;
  display: block;
}

.breadcrumb-easy-3bdd pre,
.breadcrumb-easy-3bdd code {
  overflow-x: auto;
  max-width: 100%;
}

.breadcrumb-easy-3bdd 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);
}

.breadcrumb-easy-3bdd h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.breadcrumb-easy-3bdd h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.breadcrumb-easy-3bdd p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.breadcrumb-easy-3bdd ul,
.breadcrumb-easy-3bdd ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.breadcrumb-easy-3bdd li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.breadcrumb-easy-3bdd strong {
  font-weight: 600;
  color: var(--color-text);
}

.breadcrumb-easy-3bdd a {
  color: var(--color-primary);
  text-decoration: underline;
}

.breadcrumb-easy-3bdd a:hover {
  color: var(--color-primary-dark);
}

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

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

.black-b309 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) {
  .hard-0631 {
    grid-template-columns: 1fr;
  }
  
  .tabs_083f {
    font-size: 1.75rem;
  }
  
  .breadcrumb-easy-3bdd {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tabs_083f {
    font-size: 1.5rem;
  }
  
  .breadcrumb-easy-3bdd h3 {
    font-size: 1.375rem;
  }
  
  .breadcrumb-easy-3bdd h4 {
    font-size: 1.125rem;
  }
}

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

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

.notification-purple-4296 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.prev-1b17 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.complex-c2bf {
  flex-shrink: 0;
}

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

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

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

.menu-pressed-200a,
.highlight-warm-7f45,
.component_east_b5f7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.menu-pressed-200a thead,
.highlight-warm-7f45 thead {
  background: var(--color-primary);
  color: white;
}

.menu-pressed-200a th,
.menu-pressed-200a td,
.highlight-warm-7f45 th,
.highlight-warm-7f45 td,
.component_east_b5f7 th,
.component_east_b5f7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu-pressed-200a th,
  .menu-pressed-200a td,
  .highlight-warm-7f45 th,
  .highlight-warm-7f45 td,
  .component_east_b5f7 th,
  .component_east_b5f7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .menu-pressed-200a,
  .highlight-warm-7f45,
  .component_east_b5f7 {
    min-width: 600px;
  }
}

.menu-pressed-200a th,
.highlight-warm-7f45 th,
.component_east_b5f7 th {
  font-weight: 600;
}

.menu-pressed-200a tbody tr:hover,
.highlight-warm-7f45 tbody tr:hover,
.component_east_b5f7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.over-9511 h4 {
  color: white;
}

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

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

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

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

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

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

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

.modal-south-1212:hover {
  text-decoration: underline;
}

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

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

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

.lite-9bb5 {
  font-weight: 600;
  color: white;
}

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

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

.disabled_8e96 {
  color: #4caf50;
}

.gold-29f4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu_fast_5288 .easy-ad78 {
  width: 100%;
  background: white;
}

.input-north-d39b .easy-ad78 {
  color: #667eea;
}

.column_huge_691b .easy-ad78 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .footer_f818 {
    padding: var(--space-md);
  }
  
  .down-e608 {
    padding: var(--space-md);
  }
  
  .summary_red_7f12 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.up_437f,
.notification_silver_3ae2,
.content-b2e9,
.caption-clean-02f4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.banner-gold-ea8d {
  border-color: var(--color-success);
}

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

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

.banner-gold-ea8d .hidden_c32e {
  background: #e8f5e9;
  color: var(--color-success);
}

.text_smooth_4995 .hidden_c32e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-west-4052 {
  margin-top: var(--space-xxl);
}

.block-full-4fcf {
  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);
}

.secondary-blue-8b89 {
  text-align: center;
}

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

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

.icon_3b1e .lite-9bb5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-middle-038b {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

.cool-12a2 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.pagination-89c8 {
  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;
}

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

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

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

.gallery-a163 {
  text-align: right;
}

.gallery-a163 .down-788f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hard-a72f {
  background: #e8f5e9;
  color: #2e7d32;
}

.dirty-042f {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.notice-fixed-221c {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-2c97 {
  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);
}

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

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

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

.slider-north-4876,
.paragraph_9404 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.slider-north-4876 h4,
.paragraph_9404 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.slider-north-4876 ul,
.paragraph_9404 ul {
  list-style: none;
  padding: 0;
}

.slider-north-4876 li,
.paragraph_9404 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.component-selected-7156 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-e972 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.content-e972 a:hover {
  color: white;
}

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

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

.accent_9f9b a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.pagination-b0b1 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.pagination-b0b1 a:hover {
  color: white;
}

.highlight-light-61c4 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

.surface-top-7dab {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.surface-top-7dab .yellow_8b3e {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.fast_6773 a:hover {
  color: white;
}

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

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

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

.nav_iron_abd1 a:hover {
  color: white;
}

.highlight-light-61c4 {
  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);
}

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

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

.current-82d9 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.title_yellow_8661 a:hover {
  color: white;
}

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

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

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

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

@media (max-width: 768px) {
  .highlight-light-61c4 {
    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;
  }
  
  .caption-08ee {
    font-size: 2rem;
  }
  
  .tabs_083f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .main-9105,
  .hard-0631 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .fast_789d,
  .green-a17e,
  .logo-south-84e9,
  .accordion_green_45c4,
  .hard-f144,
  .article_warm_910f,
  .dropdown_plasma_c607,
  .right_7b08,
  .search-9b73 {
    grid-template-columns: 1fr;
  }
  
  .down_61cd {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .solid-830f {
    padding: var(--space-lg) 0;
  }
  
  .header-dynamic-04c6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .header-dynamic-04c6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .easy-ad78 {
    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;
  }
  
  .down_61cd {
    grid-template-columns: 1fr;
  }
  
  .bright_166f,
  .fast-b865,
  .layout-dim-cd90 {
    flex-direction: column;
    width: 100%;
  }
  
  .chip_outer_5660,
  .paragraph_selected_fabd,
  .bright_166f .easy-ad78,
  .fast-b865 .easy-ad78 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .caption-08ee {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tabs_083f {
    font-size: 1.375rem;
  }
  
  .video_last_5856 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tertiary_first_ebff,
  .footer-complex-d610,
  .highlight_e1b7,
  .shadow-83d8,
  .wrapper_2e69 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .east-cb2a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .breadcrumb_7874 {
    gap: var(--space-xs);
  }
  
  .left-3ec3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hidden-narrow-1760 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .icon_3b1e {
    width: 150px;
    height: 150px;
  }
  
  .description-9de0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tag-cce2,
  .photo_inner_f238,
  .bright_166f,
  .avatar_soft_6109,
  .list-mini-c139,
  .highlight-899d,
  .tertiary_9948 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .solid-830f {
    page-break-inside: avoid;
  }
}

/* css-noise: 95af */
.widget-item-o0 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
