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

.accordion_stale_8215:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.hard_96bb,
header,
.lower-c134,
.notification_fc97,
.main-eebd,
.feature_pink_e310,
.banner_up_8636,
.notification_d212,
.info-54e6 {
  max-width: none;
}

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

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

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

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

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

.hot-0f09 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.thick_de2b {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.slider-under-a146 {
  position: relative;
}

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

.summary-up-5348 svg {
  transition: transform 0.2s ease;
}

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

.filter-orange-e7cc {
  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;
}

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

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

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

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

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

.thumbnail-last-0e31 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.pattern_9c0b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.form-black-1e47[aria-expanded="true"] .search_3d01:nth-child(2) {
  opacity: 0;
}

.form-black-1e47[aria-expanded="true"] .search_3d01:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .thick_de2b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .thick_de2b.preview-down-770d {
    display: block;
    right: 0;
  }
  
  .sidebar_liquid_e884 {
    flex-direction: column;
    gap: 0;
  }
  
  .accent_north_a95e {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .thick_de2b::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;
  }
  
  .thick_de2b.preview-down-770d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .thick_de2b {
    display: none;
  }
  
  .form-black-1e47 {
    display: flex;
  }
  
  .action_b7b4 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pattern_9c0b,
  .caption-d761 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .slider-under-a146 {
    position: relative;
  }
  
  .filter-orange-e7cc {
    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;
  }
  
  .summary-up-5348[aria-expanded="true"] + .filter-orange-e7cc {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .backdrop-ef5a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .thumbnail-last-0e31 {
    gap: 8px;
  }
  
  .pattern_9c0b {
    display: none;
  }
  
  .caption-d761 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .highlight_fluid_b400 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.item-4875 svg {
  flex-shrink: 0;
}

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

.item-4875 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-4f47 {
  display: flex;
  gap: var(--space-sm);
}

.top-6c26 {
  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;
}

.table-slow-0a4d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.table-slow-0a4d strong {
  font-weight: 600;
  color: var(--color-text);
}

.table-slow-0a4d span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.form-5b54 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .gradient_rough_7a52 {
    grid-template-columns: 1fr;
  }
  
  .progress-57c5 {
    font-size: 1.75rem;
  }
  
  .center-225b {
    order: -1;
    max-width: 100%;
  }
  
  .form-5b54 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .progress-57c5 {
    font-size: 1.5rem;
  }
  
  .disabled_solid_b5d2 {
    font-size: 1rem;
  }
  
  .pattern_4569 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .form-5b54 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.stone-01d7 {
  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;
}

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

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

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

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

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

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

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

.header-618b {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.layout-selected-5ccf {
  list-style: none;
  counter-reset: toc-counter;
}

.layout-selected-5ccf li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.layout-selected-5ccf 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);
}

.layout-selected-5ccf 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;
}

.layout-selected-5ccf li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

.sort-blue-622a {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_fixed_387f 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) {
  .fresh_9a03 {
    grid-template-columns: 1fr;
  }
  
  .cool_87b9 {
    font-size: 1.75rem;
  }
  
  .active_b852 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.aside_be35 {
  flex-shrink: 0;
}

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

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

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

.prev-af3b,
.left-0b7e,
.main_2609 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.prev-af3b thead,
.left-0b7e thead {
  background: var(--color-primary);
  color: white;
}

.prev-af3b th,
.prev-af3b td,
.left-0b7e th,
.left-0b7e td,
.main_2609 th,
.main_2609 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .prev-af3b th,
  .prev-af3b td,
  .left-0b7e th,
  .left-0b7e td,
  .main_2609 th,
  .main_2609 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .prev-af3b,
  .left-0b7e,
  .main_2609 {
    min-width: 600px;
  }
}

.prev-af3b th,
.left-0b7e th,
.main_2609 th {
  font-weight: 600;
}

.prev-af3b tbody tr:hover,
.left-0b7e tbody tr:hover,
.main_2609 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hover-yellow-63ae h4 {
  color: white;
}

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

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

.old-91b5:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.accordion-180e {
  list-style: none;
  padding: 0;
}

.accordion-180e li {
  padding: var(--space-xs) 0;
}

.tertiary_cold_e4b0 {
  color: #4caf50;
}

.input_rough_a8a2 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.tag-solid-6456 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery_bronze_8d05 .stone-01d7 {
  width: 100%;
  background: white;
}

.old-0c99 .stone-01d7 {
  color: #667eea;
}

.tag-f3ca .stone-01d7 {
  color: #f5576c;
}

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

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

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

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

.texture-dynamic-e5db h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .texture-dynamic-e5db {
    padding: var(--space-md);
  }
  
  .lower_fa1b {
    padding: var(--space-md);
  }
  
  .video-outer-b485 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.paragraph_e1f1,
.basic_07c9,
.disabled-4c78,
.card-copper-fcf1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter_1f23 .dropdown_black_5a66 {
  background: #e8f5e9;
  color: var(--color-success);
}

.container_plasma_935b .dropdown_black_5a66 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gold-8f65 {
  text-align: center;
}

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

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

.gradient-eb6a .list_hovered_730f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.menu-paper-6991 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.main-current-8cce {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.progress-steel-7cd1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

.status-0d1a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.widget_brown_c807 {
  text-align: right;
}

.widget_brown_c807 .section-59f0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.backdrop-5522 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.picture-00b3 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.highlight-9236[aria-expanded="true"] .tertiary_415a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-7f31,
.element-yellow-b112 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.bronze-7f31 h4,
.element-yellow-b112 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.bronze-7f31 ul,
.element-yellow-b112 ul {
  list-style: none;
  padding: 0;
}

.bronze-7f31 li,
.element-yellow-b112 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.upper-86fe ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.left-5dad {
  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);
}

.header_fluid_a2e0 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-ac5c .logo-4f47 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.south_cecd a:hover {
  color: white;
}

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

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

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

.card_2ee5 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .lite_17c4 {
    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;
  }
  
  .progress-57c5 {
    font-size: 2rem;
  }
  
  .cool_87b9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .gradient_rough_7a52,
  .fresh_9a03 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hover-8f2e,
  .article-f628,
  .banner-953f,
  .motion_11c7,
  .footer-26b6,
  .up-e3ae,
  .gold_ad1e,
  .texture_d393 {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb_north_f7b2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .banner_up_8636 {
    padding: var(--space-lg) 0;
  }
  
  .layout-selected-5ccf li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .layout-selected-5ccf li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .stone-01d7 {
    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;
  }
  
  .breadcrumb_north_f7b2 {
    grid-template-columns: 1fr;
  }
  
  .carousel_7132,
  .picture_paper_d498,
  .filter-4ae2 {
    flex-direction: column;
    width: 100%;
  }
  
  .in_2465,
  .header-618b,
  .carousel_7132 .stone-01d7,
  .picture_paper_d498 .stone-01d7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .progress-57c5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .cool_87b9 {
    font-size: 1.375rem;
  }
  
  .last_88b1 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .lite-7224,
  .badge_f6ff,
  .dropdown_662f,
  .tabs-a4d2,
  .column-263f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .glass_9f4f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fresh-aa6b {
    gap: var(--space-xs);
  }
  
  .item-4875 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .badge_pressed_1e99 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .gradient-eb6a {
    width: 150px;
    height: 150px;
  }
  
  .text-8712 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hard_96bb,
  .lower-c134,
  .carousel_7132,
  .status_7264,
  .notification_d212,
  .info-54e6,
  .form-black-1e47 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .banner_up_8636 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 2ba1 */
.shadow-element-q7 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.1;
}
