/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.out_990f {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.out_990f:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.main_small_0a23,
header,
.badge_e681,
.row-hovered-6cc0,
.container-silver-97ac,
.mask_center_09c2,
.card_fc26,
.over-c934,
.tag_iron_55bb {
  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
   ============================================ */
.main_small_0a23 {
  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);
}

.wrapper-hard-c5d6 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.banner-pro-ac49 {
  flex: 1;
}

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

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

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

.hidden_purple_4e9a.fn-active-d155 {
  background: var(--color-primary);
  color: white;
}

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

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

.alert-7c5f svg {
  transition: transform 0.2s ease;
}

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

.gradient-tiny-4ccb {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.tertiary-right-093c {
  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-right-093c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.tertiary-right-093c svg {
  flex-shrink: 0;
}

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

.dirty-9ab3: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);
}

.dirty-9ab3 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .banner-pro-ac49::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .banner-pro-ac49.video-fast-4cf0 {
    display: block;
    right: 0;
  }
  
  .feature_34ce {
    flex-direction: column;
    gap: 0;
  }
  
  .hidden_purple_4e9a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .banner-pro-ac49::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;
  }
  
  .banner-pro-ac49.video-fast-4cf0::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .banner-pro-ac49 {
    display: none;
  }
  
  .overlay_5766 {
    display: flex;
  }
  
  .box_2129 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tertiary-right-093c,
  .dirty-9ab3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .picture_first_3038 {
    position: relative;
  }
  
  .gradient-tiny-4ccb {
    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;
  }
  
  .alert-7c5f[aria-expanded="true"] + .gradient-tiny-4ccb {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .main-center-54fe {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .brown-bbf9 {
    gap: 8px;
  }
  
  .tertiary-right-093c {
    display: none;
  }
  
  .dirty-9ab3 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .avatar_east_724d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.text_cc3d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.tooltip-47e5 {
  color: var(--color-text-lighter);
}

.label-hard-039e {
  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) {
  .label-hard-039e {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .label-hard-039e {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

.hidden-hard-c178 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .header_hovered_ccea {
    grid-template-columns: 1fr;
  }
  
  .label-hard-039e {
    font-size: 1.75rem;
  }
  
  .hidden-hard-c178 {
    order: -1;
    max-width: 100%;
  }
  
  .info_f7a3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .label-hard-039e {
    font-size: 1.5rem;
  }
  
  .label_5bdd {
    font-size: 1rem;
  }
  
  .input_8a32 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .info_f7a3 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.rough-8fc3 {
  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;
}

.easy-32e5 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.full-495c {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.large-593c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dirty-7e74 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.dirty-7e74 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) {
  .badge_a0d7 {
    grid-template-columns: 1fr;
  }
  
  .large-593c {
    font-size: 1.75rem;
  }
  
  .link_96ec {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .large-593c {
    font-size: 1.5rem;
  }
  
  .link_96ec h3 {
    font-size: 1.375rem;
  }
  
  .link_96ec h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.nav-upper-8e5c strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.west-bb37 {
  flex-shrink: 0;
}

.gradient-soft-52e9 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.carousel-7367,
.section-f17f,
.outline_pro_1e86 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.carousel-7367 thead,
.section-f17f thead {
  background: var(--color-primary);
  color: white;
}

.carousel-7367 th,
.carousel-7367 td,
.section-f17f th,
.section-f17f td,
.outline_pro_1e86 th,
.outline_pro_1e86 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .carousel-7367 th,
  .carousel-7367 td,
  .section-f17f th,
  .section-f17f td,
  .outline_pro_1e86 th,
  .outline_pro_1e86 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .carousel-7367,
  .section-f17f,
  .outline_pro_1e86 {
    min-width: 600px;
  }
}

.carousel-7367 th,
.section-f17f th,
.outline_pro_1e86 th {
  font-weight: 600;
}

.carousel-7367 tbody tr:hover,
.section-f17f tbody tr:hover,
.outline_pro_1e86 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.panel-huge-2825 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.feature_4feb {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

.element-iron-fc24 {
  font-weight: 600;
  color: white;
}

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

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

.link_407d {
  color: #4caf50;
}

.container-rough-20ed {
  color: #ff9800;
}

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

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

.grid-middle-6dfe {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay_brown_5b37 .rough-8fc3 {
  width: 100%;
  background: white;
}

.outline-short-14de .rough-8fc3 {
  color: #667eea;
}

.media_smooth_3024 .rough-8fc3 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .stale-3190 {
    padding: var(--space-md);
  }
  
  .highlight_de0e {
    padding: var(--space-md);
  }
  
  .wrapper_dirty_d5fb {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.nav_stale_7b87,
.mini_be85,
.lite_e6ab,
.fluid-6bc3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.header-pressed-64f0:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.under_c581 .fixed_ae8b {
  background: #e8f5e9;
  color: var(--color-success);
}

.liquid_601f .fixed_ae8b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.widget-full-4d3d {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .modal-narrow-2d7b {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.slow-0f9b {
  text-align: center;
}

.popup_4343 {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.popup_4343 .element-iron-fc24 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-complex-7d62 {
  border: 2px solid #4caf50;
}

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

.iron-9fee {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.action_6fe6 {
  text-align: right;
}

.action_6fe6 .backdrop-center-8dcf {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.north-13dd {
  background: #e8f5e9;
  color: #2e7d32;
}

.inner-a9d9 {
  background: #e3f2fd;
  color: #1565c0;
}

.current-25b1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.frame-4f69 {
  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);
}

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

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

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

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

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

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

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

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

.preview-west-6142 {
  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);
}

.preview-west-6142:hover {
  background: var(--color-bg-alt);
}

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

.preview-west-6142[aria-expanded="true"] .prev_19b3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.dropdown-easy-a6de {
  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);
}

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

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

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

.notification-yellow-5c23,
.fixed-3986 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.notification-yellow-5c23 h4,
.fixed-3986 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.notification-yellow-5c23 ul,
.fixed-3986 ul {
  list-style: none;
  padding: 0;
}

.notification-yellow-5c23 li,
.fixed-3986 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.texture-fixed-6f28 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.disabled_down_28be {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.pressed-9b96 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.tag_0b9f .content_06dc {
  color: #4caf50;
  font-size: 0.875rem;
}

.border-dfb4 {
  list-style: none;
  padding: 0;
}

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

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

.border-dfb4 a:hover {
  color: white;
}

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

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

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

.bronze-bbf9 a:hover {
  color: white;
}

.message-wide-5054 {
  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);
}

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

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

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

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

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

.hover-copper-f040:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .message-wide-5054 {
    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;
  }
  
  .label-hard-039e {
    font-size: 2rem;
  }
  
  .large-593c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .header_hovered_ccea,
  .badge_a0d7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .bronze_0fa4,
  .primary-13e2,
  .thumbnail-dim-9386,
  .modal-narrow-2d7b,
  .hot-7ce6,
  .input-gold-c15a,
  .heading-a02e,
  .info_bottom_692a {
    grid-template-columns: 1fr;
  }
  
  .backdrop_3155 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .card_fc26 {
    padding: var(--space-lg) 0;
  }
  
  .red_366d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .red_366d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .rough-8fc3 {
    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;
  }
  
  .backdrop_3155 {
    grid-template-columns: 1fr;
  }
  
  .sidebar_lower_a9f5,
  .caption_1294,
  .liquid-503f {
    flex-direction: column;
    width: 100%;
  }
  
  .input_prev_9e4c,
  .full-495c,
  .sidebar_lower_a9f5 .rough-8fc3,
  .caption_1294 .rough-8fc3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .label-hard-039e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .large-593c {
    font-size: 1.375rem;
  }
  
  .cool-24e6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .form_clean_74e5,
  .light-fae0,
  .badge_3b20,
  .primary_active_8124,
  .input_cfce {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .input_basic_92f8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .preview-short-e3de {
    gap: var(--space-xs);
  }
  
  .text_cc3d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature_4feb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .popup_4343 {
    width: 150px;
    height: 150px;
  }
  
  .focus-4d73 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .main_small_0a23,
  .badge_e681,
  .sidebar_lower_a9f5,
  .old_c90b,
  .over-c934,
  .tag_iron_55bb,
  .overlay_5766 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .card_fc26 {
    page-break-inside: avoid;
  }
}

/* css-noise: fb74 */
.phantom-card-k5 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.3;
}
