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

.text-80e1:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.carousel-next-034f):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. */
.carousel-next-034f,
header,
.rough_d569,
.carousel-6bee,
.mini-1bdb,
.active_8553,
.accent_pro_4280,
.status_8583,
.popup_solid_0f5c {
  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
   ============================================ */
.carousel-next-034f {
  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);
}

.tag-copper-ad6a {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.carousel-next-034f.surface-hard-e028 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.mask_outer_ce26 {
  flex: 1;
}

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

.description-last-02eb {
  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);
}

.description-last-02eb:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.description-last-02eb.table_bronze_7669 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.modal-gold-9e38 {
  position: relative;
}

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

.thumbnail-huge-332f svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.modal-gold-9e38:hover .thumbnail-huge-332f svg,
.thumbnail-huge-332f[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.image-wood-1152 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.form-complex-dfee[aria-expanded="true"] .background_f34b:nth-child(2) {
  opacity: 0;
}

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

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

  .mask_outer_ce26::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .mask_outer_ce26.gradient_c4af {
    display: block;
    right: 0;
  }
  
  .header-large-c83f {
    flex-direction: column;
    gap: 0;
  }
  
  .description-last-02eb {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .mask_outer_ce26::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;
  }
  
  .mask_outer_ce26.gradient_c4af::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .mask_outer_ce26 {
    display: none;
  }
  
  .form-complex-dfee {
    display: flex;
  }
  
  .secondary_in_fedd {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .image-wood-1152,
  .chip_mini_5917 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .modal-gold-9e38 {
    position: relative;
  }
  
  .disabled_c622 {
    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;
  }
  
  .thumbnail-huge-332f[aria-expanded="true"] + .disabled_c622 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .row_31a7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .outline-basic-d123 {
    gap: 8px;
  }
  
  .image-wood-1152 {
    display: none;
  }
  
  .chip_mini_5917 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .white_f907 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.glass-c872 svg {
  flex-shrink: 0;
}

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

.glass-c872 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.under-9ed4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.under-9ed4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.static-22d5 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .wide-6f7e {
    grid-template-columns: 1fr;
  }
  
  .short-3124 {
    font-size: 1.75rem;
  }
  
  .static-22d5 {
    order: -1;
    max-width: 100%;
  }
  
  .wood_6c2b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .short-3124 {
    font-size: 1.5rem;
  }
  
  .main_glass_c268 {
    font-size: 1rem;
  }
  
  .under-9ed4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wood_6c2b {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.thick-774d {
  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;
}

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

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

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

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

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

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

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

.over-1f7b {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-full-5d9f {
  background: var(--color-bg-section);
}

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

.gallery-green-96e1 {
  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);
}

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

.title-bottom-4de2 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-9637 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) {
  .main-out-c323 {
    grid-template-columns: 1fr;
  }
  
  .center_9010 {
    font-size: 1.75rem;
  }
  
  .old-5863 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.photo_55f4 {
  flex-shrink: 0;
}

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

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

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

.menu_new_6b10,
.element-543c,
.sort-bright-38b8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.menu_new_6b10 thead,
.element-543c thead {
  background: var(--color-primary);
  color: white;
}

.menu_new_6b10 th,
.menu_new_6b10 td,
.element-543c th,
.element-543c td,
.sort-bright-38b8 th,
.sort-bright-38b8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu_new_6b10 th,
  .menu_new_6b10 td,
  .element-543c th,
  .element-543c td,
  .sort-bright-38b8 th,
  .sort-bright-38b8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .menu_new_6b10,
  .element-543c,
  .sort-bright-38b8 {
    min-width: 600px;
  }
}

.menu_new_6b10 th,
.element-543c th,
.sort-bright-38b8 th {
  font-weight: 600;
}

.menu_new_6b10 tbody tr:hover,
.element-543c tbody tr:hover,
.sort-bright-38b8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.main_bright_dd7e h4 {
  color: white;
}

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

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

.sort-1b49:last-child {
  border-bottom: none;
}

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

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

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

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

.badge-a741:hover {
  text-decoration: underline;
}

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

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

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

.south-fbbd {
  font-weight: 600;
  color: white;
}

.badge-e543 {
  list-style: none;
  padding: 0;
}

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

.old-d95e {
  color: #4caf50;
}

.over_98d4 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gold-177a {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.form-fe64 .thick-774d {
  width: 100%;
  background: white;
}

.menu-6dc9 .thick-774d {
  color: #667eea;
}

.text-fa56 .thick-774d {
  color: #f5576c;
}

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

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

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

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

.active-6ecf h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .active-6ecf {
    padding: var(--space-md);
  }
  
  .element_glass_9e65 {
    padding: var(--space-md);
  }
  
  .full-a795 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.input-dirty-dcab li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.picture_aa1a,
.tabs_narrow_7e8a,
.icon-3ebe,
.row-upper-e8ee {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.widget-small-505d {
  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) {
  .widget-small-505d {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.content-narrow-931e {
  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);
}

.border-884c .content-narrow-931e {
  background: #e8f5e9;
  color: var(--color-success);
}

.gradient_copper_66fc .content-narrow-931e {
  background: #fff3e0;
  color: var(--color-warning);
}

.tag-warm-103e h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.tag-warm-103e p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.layout-small-829d {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

.north-48ab {
  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);
}

.description-basic-bde4 {
  text-align: center;
}

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

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

.hard_2140 .south-fbbd {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.alert-left-87a6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.grid-72dc p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.large-229c {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.banner-885d {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.tooltip-608b {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.gold_f730 {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-70e6 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.gradient_269b[aria-expanded="true"] .hidden-70e6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.gold_9989 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

.accordion-complex-b37a,
.label_2b65 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.accordion-complex-b37a h4,
.label_2b65 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.accordion-complex-b37a ul,
.label_2b65 ul {
  list-style: none;
  padding: 0;
}

.accordion-complex-b37a li,
.label_2b65 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.avatar_liquid_2972 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_8c5d .center_65e2 {
  color: #4caf50;
  font-size: 0.875rem;
}

.fixed-ce45 {
  list-style: none;
  padding: 0;
}

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

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

.fixed-ce45 a:hover {
  color: white;
}

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

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

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

.hero_3453 a:hover {
  color: white;
}

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

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

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

.red-7ae8 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.gallery-b88d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .short-a34a {
    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;
  }
  
  .short-3124 {
    font-size: 2rem;
  }
  
  .center_9010 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wide-6f7e,
  .main-out-c323 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .stale-aa7b,
  .detail_9389,
  .article_in_fd26,
  .text-f305,
  .motion_795c,
  .motion_f916,
  .primary_e410,
  .header-96cc {
    grid-template-columns: 1fr;
  }
  
  .badge-717c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .accent_pro_4280 {
    padding: var(--space-lg) 0;
  }
  
  .block_6634 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .block_6634 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .thick-774d {
    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;
  }
  
  .badge-717c {
    grid-template-columns: 1fr;
  }
  
  .logo_static_88e3,
  .old-f413,
  .hero-3825 {
    flex-direction: column;
    width: 100%;
  }
  
  .section-2616,
  .over-1f7b,
  .logo_static_88e3 .thick-774d,
  .old-f413 .thick-774d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .short-3124 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .center_9010 {
    font-size: 1.375rem;
  }
  
  .filter-063e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .accordion_hard_b131,
  .overlay_prev_8b84,
  .search-3338,
  .carousel_short_5ee4,
  .button-old-6fab {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget-small-505d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .static-d601 {
    gap: var(--space-xs);
  }
  
  .glass-c872 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .outline_prev_fa98 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hard_2140 {
    width: 150px;
    height: 150px;
  }
  
  .accordion_7046 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .carousel-next-034f,
  .rough_d569,
  .logo_static_88e3,
  .disabled_f588,
  .status_8583,
  .popup_solid_0f5c,
  .form-complex-dfee {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .accent_pro_4280 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: ba9a */
.shadow-element-f6 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
