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

.last_f1e4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.tiny-c19f):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. */
.tiny-c19f,
header,
.lite-a007,
.avatar-wood-f05f,
.active-smooth-ab9f,
.item_orange_96da,
.fluid-1049,
.content-fixed-6464,
.solid_acc9 {
  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
   ============================================ */
.tiny-c19f {
  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);
}

.media_eb32 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.tiny-c19f.button-first-42a9 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.east_3c52 {
  flex: 1;
}

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

.hidden_810a {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

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

.hidden_810a.accordion-41a7 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.message-e00e {
  position: relative;
}

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

.title_e1d0 svg {
  transition: transform 0.2s ease;
}

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

.hover-yellow-18f2 {
  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;
}

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

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

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

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

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

.hero-first-338b {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.glass-855e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.shadow-advanced-ff5e[aria-expanded="true"] .tag-1983:nth-child(2) {
  opacity: 0;
}

.shadow-advanced-ff5e[aria-expanded="true"] .tag-1983:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .east_3c52::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .east_3c52.texture-paper-0521 {
    display: block;
    right: 0;
  }
  
  .container-924e {
    flex-direction: column;
    gap: 0;
  }
  
  .hidden_810a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .east_3c52::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;
  }
  
  .east_3c52.texture-paper-0521::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .east_3c52 {
    display: none;
  }
  
  .shadow-advanced-ff5e {
    display: flex;
  }
  
  .surface-dc25 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .glass-855e,
  .warm_c978 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .message-e00e {
    position: relative;
  }
  
  .hover-yellow-18f2 {
    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;
  }
  
  .title_e1d0[aria-expanded="true"] + .hover-yellow-18f2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .detail_old_0678 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hero-first-338b {
    gap: 8px;
  }
  
  .glass-855e {
    display: none;
  }
  
  .warm_c978 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tooltip_west_275e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.header-focused-e578 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-focused-e578 svg {
  flex-shrink: 0;
}

.header-focused-e578 a {
  color: var(--color-primary);
  text-decoration: none;
}

.header-focused-e578 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.banner-upper-89c0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.banner-upper-89c0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.item-in-a3b4 {
  display: flex;
  gap: var(--space-sm);
}

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

.image-fresh-b6b1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.image-fresh-b6b1 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.box-0e14 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.element-center-3bec {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.media-short-04c2 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hero-west-5e02 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .accordion_fluid_80b0 {
    grid-template-columns: 1fr;
  }
  
  .box_51e6 {
    font-size: 1.75rem;
  }
  
  .highlight_0781 {
    order: -1;
    max-width: 100%;
  }
  
  .header_liquid_7268 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .box_51e6 {
    font-size: 1.5rem;
  }
  
  .header_basic_5f45 {
    font-size: 1rem;
  }
  
  .banner-upper-89c0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .header_liquid_7268 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.down-53fa {
  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;
}

.background-red-849e {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-east-7907 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.thumbnail-east-7907 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);
}

.thumbnail-east-7907 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;
}

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

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

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

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

.mask-633a {
  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);
}

.chip-71d1 {
  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);
}

.tertiary-pro-8c4b {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wood_81c0 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) {
  .box-complex-1d76 {
    grid-template-columns: 1fr;
  }
  
  .chip-71d1 {
    font-size: 1.75rem;
  }
  
  .orange-3253 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .chip-71d1 {
    font-size: 1.5rem;
  }
  
  .orange-3253 h3 {
    font-size: 1.375rem;
  }
  
  .orange-3253 h4 {
    font-size: 1.125rem;
  }
}

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

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

.pink-5cd5 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.footer-under-fc20 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.image-smooth-198b strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.disabled-pro-45df {
  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;
}

.logo-orange-f5de {
  flex-shrink: 0;
}

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

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

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

.panel-liquid-31bf,
.panel_7caf,
.button_1bbc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.panel-liquid-31bf thead,
.panel_7caf thead {
  background: var(--color-primary);
  color: white;
}

.panel-liquid-31bf th,
.panel-liquid-31bf td,
.panel_7caf th,
.panel_7caf td,
.button_1bbc th,
.button_1bbc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .panel-liquid-31bf th,
  .panel-liquid-31bf td,
  .panel_7caf th,
  .panel_7caf td,
  .button_1bbc th,
  .button_1bbc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .panel-liquid-31bf,
  .panel_7caf,
  .button_1bbc {
    min-width: 600px;
  }
}

.panel-liquid-31bf th,
.panel_7caf th,
.button_1bbc th {
  font-weight: 600;
}

.panel-liquid-31bf tbody tr:hover,
.panel_7caf tbody tr:hover,
.button_1bbc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.gradient-7910 h4 {
  color: white;
}

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

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

.info-760c:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.hover-2cec {
  list-style: none;
  padding: 0;
}

.hover-2cec li {
  padding: var(--space-xs) 0;
}

.large_33ca {
  color: #4caf50;
}

.accordion-stone-1053 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-simple-ce54 .down-53fa {
  width: 100%;
  background: white;
}

.narrow-e8c7 .down-53fa {
  color: #667eea;
}

.disabled-8c3d .down-53fa {
  color: #f5576c;
}

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

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

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

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

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

.block-33e0 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .narrow_92ed {
    padding: var(--space-md);
  }
  
  .block-33e0 {
    padding: var(--space-md);
  }
  
  .accordion-old-c7f1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.backdrop-lite-2002 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.menu_c7e1,
.smooth_fc30,
.under_170e,
.top-5090 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.caption-stale-374b {
  border-color: var(--color-success);
}

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

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

.caption-stale-374b .inner_24c6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.modal_pressed_d5f8 .inner_24c6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.search-next-51d7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

.accent-9d4e {
  margin-top: var(--space-xxl);
}

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

.mini-8977 {
  text-align: center;
}

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

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

.pagination_hot_8a1e .right_f94e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.dynamic-9f7f {
  margin-bottom: var(--space-xl);
}

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

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

.sidebar-soft-133a {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.block-inner-087b {
  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;
}

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

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

.menu-stone-5de8 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.aside_west_a0b0 {
  text-align: right;
}

.aside_west_a0b0 .layout-baa5 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.small-afb8 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.status_simple_da0a h4,
.sort_0fa1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.status_simple_da0a ul,
.sort_0fa1 ul {
  list-style: none;
  padding: 0;
}

.status_simple_da0a li,
.sort_0fa1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.logo-in-45e3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.logo-in-45e3 ul {
  list-style: none;
  padding: 0;
}

.logo-in-45e3 li {
  padding: var(--space-xs) 0;
  color: white;
}

.grid-black-408c {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.form_dim_a0f1 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bright-03d5 .item-in-a3b4 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.dark_380d a:hover {
  color: white;
}

.link-d42e {
  list-style: none;
  padding: 0;
}

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

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

.link-d42e a:hover {
  color: white;
}

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

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

.popup-current-c19f a {
  color: #4caf50;
  text-decoration: none;
}

.plasma-8c09 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.solid-47dc:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .link_inner_2af3 {
    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;
  }
  
  .box_51e6 {
    font-size: 2rem;
  }
  
  .chip-71d1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .accordion_fluid_80b0,
  .box-complex-1d76 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .footer-down-0333,
  .link-mini-4921,
  .modal-1fe1,
  .under_4a3e,
  .icon-gold-4ee0,
  .tall_f289,
  .liquid-e0dd,
  .layout-huge-b5f4 {
    grid-template-columns: 1fr;
  }
  
  .label-3c2c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .fluid-1049 {
    padding: var(--space-lg) 0;
  }
  
  .thumbnail-east-7907 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .thumbnail-east-7907 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .down-53fa {
    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;
  }
  
  .label-3c2c {
    grid-template-columns: 1fr;
  }
  
  .box-0e14,
  .shade-ab8e,
  .stone_d265 {
    flex-direction: column;
    width: 100%;
  }
  
  .bronze_d48c,
  .yellow_8dda,
  .box-0e14 .down-53fa,
  .shade-ab8e .down-53fa {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .box_51e6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .chip-71d1 {
    font-size: 1.375rem;
  }
  
  .video-12bc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .inner-c2ba,
  .frame_basic_7884,
  .next_8be9,
  .border-7214,
  .over_0415 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .panel_fresh_d40b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .card-advanced-f8ec {
    gap: var(--space-xs);
  }
  
  .header-focused-e578 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .clean-ef5e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pagination_hot_8a1e {
    width: 150px;
    height: 150px;
  }
  
  .gold-385d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tiny-c19f,
  .lite-a007,
  .box-0e14,
  .thumbnail_2a5e,
  .content-fixed-6464,
  .solid_acc9,
  .shadow-advanced-ff5e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .fluid-1049 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: b7ba */
.promo-block-l7 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.2;
}
