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

.brown_b91a:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .wrapper-down-52bf {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .wrapper-down-52bf {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.input_b86a,
header,
.hard-3561,
.narrow_be93,
.modal-fd04,
.button-smooth-7fea,
.list-lower-67be,
.huge-a66c,
.mask_85d1 {
  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
   ============================================ */
.input_b86a {
  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);
}

.main-9c54 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.sort_large_15dc {
  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_selected_53b8 {
  flex: 1;
}

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

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

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

.medium-5414.fn-active-2d3b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.surface-25f9 {
  position: relative;
}

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

.focus-19aa svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.tertiary_first_0f60 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.secondary-plasma-573a {
  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;
}

.secondary-plasma-573a: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);
}

.secondary-plasma-573a svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .overlay_selected_53b8 {
    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_selected_53b8::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .overlay_selected_53b8.smooth_8047 {
    display: block;
    right: 0;
  }
  
  .container_static_8071 {
    flex-direction: column;
    gap: 0;
  }
  
  .medium-5414 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .overlay_selected_53b8::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_selected_53b8.smooth_8047::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .overlay_selected_53b8 {
    display: none;
  }
  
  .short_325f {
    display: flex;
  }
  
  .sort_large_15dc {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tertiary_first_0f60,
  .secondary-plasma-573a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .surface-25f9 {
    position: relative;
  }
  
  .dark_de29 {
    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;
  }
  
  .focus-19aa[aria-expanded="true"] + .dark_de29 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .texture-wood-c62d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .carousel_motion_1cf0 {
    gap: 8px;
  }
  
  .tertiary_first_0f60 {
    display: none;
  }
  
  .secondary-plasma-573a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .warm_fc01 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.top-7850 svg {
  flex-shrink: 0;
}

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

.top-7850 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.form-rough-75b9 a {
  color: var(--color-primary);
  text-decoration: none;
}

.form-rough-75b9 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.pagination-511a {
  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;
}

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

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

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

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

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

.active-8f13 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .shadow_basic_d771 {
    grid-template-columns: 1fr;
  }
  
  .nav-dirty-dd4c {
    font-size: 1.75rem;
  }
  
  .dark_77cf {
    order: -1;
    max-width: 100%;
  }
  
  .active-8f13 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .nav-dirty-dd4c {
    font-size: 1.5rem;
  }
  
  .slider-5099 {
    font-size: 1rem;
  }
  
  .form-rough-75b9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .active-8f13 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.tag-down-4a3c {
  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;
}

.card-0cb1 {
  background: var(--color-primary);
  color: white;
}

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

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

.highlight-39fe:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.accordion-narrow-d68d {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.text-pro-8c7b {
  list-style: none;
  counter-reset: toc-counter;
}

.text-pro-8c7b li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.text-pro-8c7b 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);
}

.text-pro-8c7b 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;
}

.text-pro-8c7b li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.list-lower-67be {
  padding: var(--space-xxl) 0;
}

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

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

.brown-92b0 {
  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);
}

.logo_selected_a535 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-3fba {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.tertiary-3fba 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) {
  .item-2199 {
    grid-template-columns: 1fr;
  }
  
  .logo_selected_a535 {
    font-size: 1.75rem;
  }
  
  .gas_574b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo_selected_a535 {
    font-size: 1.5rem;
  }
  
  .gas_574b h3 {
    font-size: 1.375rem;
  }
  
  .gas_574b h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.slider-pressed-1a41 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.silver_1e97 {
  flex-shrink: 0;
}

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

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

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

.hard-7f9f,
.hidden-e839,
.column-fe6c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hard-7f9f thead,
.hidden-e839 thead {
  background: var(--color-primary);
  color: white;
}

.hard-7f9f th,
.hard-7f9f td,
.hidden-e839 th,
.hidden-e839 td,
.column-fe6c th,
.column-fe6c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hard-7f9f th,
  .hard-7f9f td,
  .hidden-e839 th,
  .hidden-e839 td,
  .column-fe6c th,
  .column-fe6c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hard-7f9f,
  .hidden-e839,
  .column-fe6c {
    min-width: 600px;
  }
}

.hard-7f9f th,
.hidden-e839 th,
.column-fe6c th {
  font-weight: 600;
}

.hard-7f9f tbody tr:hover,
.hidden-e839 tbody tr:hover,
.column-fe6c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.link_fc02 h4 {
  color: white;
}

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

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

.accent-e787:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.over-b702 {
  color: #4caf50;
}

.mask_c233 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media_82a6 .tag-down-4a3c {
  width: 100%;
  background: white;
}

.modal-d244 .tag-down-4a3c {
  color: #667eea;
}

.focus_1ac4 .tag-down-4a3c {
  color: #f5576c;
}

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

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

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

.purple-81d2 {
  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);
}

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

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

@media (max-width: 768px) {
  .pressed_d541 {
    padding: var(--space-md);
  }
  
  .description_2077 {
    padding: var(--space-md);
  }
  
  .table_1738 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hard-1477,
.title_f9ed,
.icon_middle_038d,
.nav_hard_df4a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-38a3 {
  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);
}

.slider_left_ee37 .avatar-38a3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.banner_3704 .avatar-38a3 {
  background: #fff3e0;
  color: var(--color-warning);
}

.outline-orange-8c03 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.outline-orange-8c03 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_under_bc0c {
  text-align: center;
}

.feature-5ba8 {
  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);
}

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

.feature-5ba8 .out_0df5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.plasma-9b66 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.short-15b2 {
  color: var(--color-text-light);
}

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

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

.thick-499b {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.focus-under-36ac {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.column_f6fd {
  text-align: right;
}

.column_f6fd .badge_red_67c4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

.gradient-upper-438c span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.aside-fixed-3d69 {
  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);
}

.aside-fixed-3d69:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.lower-7b1e strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.south-32ae {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.text_paper_992c[aria-expanded="true"] .south-32ae {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.sort-hovered-352a {
  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);
}

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

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

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

.detail-9c2e,
.dropdown_gold_a90b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.detail-9c2e h4,
.dropdown_gold_a90b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.detail-9c2e ul,
.dropdown_gold_a90b ul {
  list-style: none;
  padding: 0;
}

.detail-9c2e li,
.dropdown_gold_a90b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.preview-medium-ea14 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video-up-36d2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-up-36d2 li {
  margin-bottom: var(--space-xs);
}

.video-up-36d2 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.video-up-36d2 a:hover {
  color: white;
}

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

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

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

.paper-75b1 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.paper-75b1 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .layout-up-043a,
  .text_clean_aab2 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.red_cc93 .feature_8aa9 {
  color: #4caf50;
  font-size: 0.875rem;
}

.bronze-5cbc {
  list-style: none;
  padding: 0;
}

.bronze-5cbc li {
  margin-bottom: var(--space-xs);
}

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

.bronze-5cbc a:hover {
  color: white;
}

.black-23c8 {
  list-style: none;
  padding: 0;
}

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

.black-23c8 a {
  color: #b0b0b0;
  text-decoration: none;
}

.black-23c8 a:hover {
  color: white;
}

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

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

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

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

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

.highlight-up-8e84 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.highlight-up-8e84 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;
}

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

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

@media (max-width: 768px) {
  .heading_left_e3fe {
    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;
  }
  
  .nav-dirty-dd4c {
    font-size: 2rem;
  }
  
  .logo_selected_a535 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .shadow_basic_d771,
  .item-2199 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hero_dec8,
  .gold_4a5b,
  .status_liquid_ffef,
  .focus_hovered_0e40,
  .center-e86f,
  .primary_1dd8,
  .dropdown-complex-dc5e,
  .layout-up-043a,
  .text_clean_aab2 {
    grid-template-columns: 1fr;
  }
  
  .avatar_e3f7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .list-lower-67be {
    padding: var(--space-lg) 0;
  }
  
  .text-pro-8c7b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .text-pro-8c7b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tag-down-4a3c {
    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;
  }
  
  .avatar_e3f7 {
    grid-template-columns: 1fr;
  }
  
  .accent_d50e,
  .panel-2d58,
  .complex_1282 {
    flex-direction: column;
    width: 100%;
  }
  
  .liquid_ef97,
  .accordion-narrow-d68d,
  .accent_d50e .tag-down-4a3c,
  .panel-2d58 .tag-down-4a3c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .nav-dirty-dd4c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo_selected_a535 {
    font-size: 1.375rem;
  }
  
  .secondary-hard-4649 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container-2c2e,
  .card-6721,
  .smooth_a49b,
  .video-mini-36e0,
  .cold-0f2c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sort_clean_02ee {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .message_smooth_4354 {
    gap: var(--space-xs);
  }
  
  .top-7850 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .west_575f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .feature-5ba8 {
    width: 150px;
    height: 150px;
  }
  
  .menu-orange-b697 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .input_b86a,
  .hard-3561,
  .accent_d50e,
  .wide_dd82,
  .huge-a66c,
  .mask_85d1,
  .short_325f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .list-lower-67be {
    page-break-inside: avoid;
  }
}

/* css-noise: 2dee */
.phantom-card-u9 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.1;
}
