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

.static-2f00:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.notice_8586,
header,
.in_afb1,
.highlight_4a19,
.background_4f9d,
.shadow_4235,
.next-520d,
.element_956e,
.grid_cec8 {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

.picture-action-0153 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.layout-9c4b {
  flex: 1;
}

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

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

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

.photo_a195.fn-active-f6f2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.focus-tall-3054 {
  position: relative;
}

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

.backdrop-smooth-077b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.box-pink-b9cb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.description-02f5[aria-expanded="true"] .panel_cd0b:nth-child(2) {
  opacity: 0;
}

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

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

  .layout-9c4b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .layout-9c4b.under-28f1 {
    display: block;
    right: 0;
  }
  
  .sort-3607 {
    flex-direction: column;
    gap: 0;
  }
  
  .photo_a195 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .layout-9c4b::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;
  }
  
  .layout-9c4b.under-28f1::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .layout-9c4b {
    display: none;
  }
  
  .description-02f5 {
    display: flex;
  }
  
  .status-d79a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .box-pink-b9cb,
  .tooltip-a889 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .focus-tall-3054 {
    position: relative;
  }
  
  .purple-4835 {
    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;
  }
  
  .backdrop-smooth-077b[aria-expanded="true"] + .purple-4835 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .carousel-42d2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .notice_80de {
    gap: 8px;
  }
  
  .box-pink-b9cb {
    display: none;
  }
  
  .tooltip-a889 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .picture-action-0153 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.slow_e041 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.icon-huge-7829 {
  color: var(--color-text-lighter);
}

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

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

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

.text-fbc2 {
  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-fbc2 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.icon-next-29ef {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.orange-0100 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .gold-c516 {
    grid-template-columns: 1fr;
  }
  
  .title-544d {
    font-size: 1.75rem;
  }
  
  .dirty_3d8f {
    order: -1;
    max-width: 100%;
  }
  
  .orange-0100 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .title-544d {
    font-size: 1.5rem;
  }
  
  .content_aa95 {
    font-size: 1rem;
  }
  
  .tooltip_green_214b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .orange-0100 {
    max-width: 250px;
  }
}

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

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

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

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

.description-small-dc4d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-large-166a {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.panel-large-166a 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-paper-9f3b {
    grid-template-columns: 1fr;
  }
  
  .light-d555 {
    font-size: 1.75rem;
  }
  
  .green-cec3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .light-d555 {
    font-size: 1.5rem;
  }
  
  .green-cec3 h3 {
    font-size: 1.375rem;
  }
  
  .green-cec3 h4 {
    font-size: 1.125rem;
  }
}

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

.primary-wide-8fa0 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.shade-52c1 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.shade-lower-4353 {
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .video_9647 {
    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_tall_d4a1,
.widget-gas-a0bf,
.breadcrumb-soft-cc90 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.menu_tall_d4a1 thead,
.widget-gas-a0bf thead {
  background: var(--color-primary);
  color: white;
}

.menu_tall_d4a1 th,
.menu_tall_d4a1 td,
.widget-gas-a0bf th,
.widget-gas-a0bf td,
.breadcrumb-soft-cc90 th,
.breadcrumb-soft-cc90 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu_tall_d4a1 th,
  .menu_tall_d4a1 td,
  .widget-gas-a0bf th,
  .widget-gas-a0bf td,
  .breadcrumb-soft-cc90 th,
  .breadcrumb-soft-cc90 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .menu_tall_d4a1,
  .widget-gas-a0bf,
  .breadcrumb-soft-cc90 {
    min-width: 600px;
  }
}

.menu_tall_d4a1 th,
.widget-gas-a0bf th,
.breadcrumb-soft-cc90 th {
  font-weight: 600;
}

.menu_tall_d4a1 tbody tr:hover,
.widget-gas-a0bf tbody tr:hover,
.breadcrumb-soft-cc90 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.input-b84c h4 {
  color: white;
}

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

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

.sort-dirty-c372:last-child {
  border-bottom: none;
}

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

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

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

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

.lower-d4ce:hover {
  text-decoration: underline;
}

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

.current-48d4 {
  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);
}

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

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

.basic-9f5b {
  list-style: none;
  padding: 0;
}

.basic-9f5b li {
  padding: var(--space-xs) 0;
}

.accent-e0d9 {
  color: #4caf50;
}

.action_6ce7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.logo-brown-bbd1 {
  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;
}

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

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

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

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

.surface-down-339d {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-84c6 .glass_aa66 {
  width: 100%;
  background: white;
}

.mask-1f4e .glass_aa66 {
  color: #667eea;
}

.section-b9d4 .glass_aa66 {
  color: #f5576c;
}

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

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

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

.accordion-south-e3a8 {
  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);
}

.media-2c7d h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .media-2c7d {
    padding: var(--space-md);
  }
  
  .card_medium_25a8 {
    padding: var(--space-md);
  }
  
  .static-71b1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.photo_pro_acf2,
.shadow_active_6d55,
.dark_2a05,
.banner_da17 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.large-604b h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.out-23be {
  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);
}

.pink-1954 .out-23be {
  background: #e8f5e9;
  color: var(--color-success);
}

.tag_huge_1b22 .out-23be {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.gradient-steel-86d6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.label-40f2 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.sort-west-1a3f {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.down-0290 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.aside-white-a7ca {
  color: var(--color-text-light);
}

.logo-fixed-6f9e {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.text-2f08 {
  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;
}

.hero-fluid-42c8 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.accordion-b639 {
  text-align: right;
}

.accordion-b639 .widget_medium_e7b2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.tabs-simple-11c8 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

.card-action-747d {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-down-d72e {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.slow-f778[aria-expanded="true"] .header-down-d72e {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover_045e,
.full-c19d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hover_045e h4,
.full-c19d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hover_045e ul,
.full-c19d ul {
  list-style: none;
  padding: 0;
}

.hover_045e li,
.full-c19d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.paragraph-plasma-d816 ul {
  list-style: none;
  padding: 0;
}

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

.feature-huge-8b62 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

.overlay-pressed-b1f4 {
  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);
}

.shade_selected_f2b4 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.image-full-d197 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.top-d1e3 .status_stale_184f {
  color: #4caf50;
  font-size: 0.875rem;
}

.selected-e7a3 {
  list-style: none;
  padding: 0;
}

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

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

.selected-e7a3 a:hover {
  color: white;
}

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

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

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

.cool_4a90 a:hover {
  color: white;
}

.in-63dd {
  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);
}

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

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

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

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

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

.active-2d5c:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .in-63dd {
    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;
  }
  
  .title-544d {
    font-size: 2rem;
  }
  
  .light-d555 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .gold-c516,
  .box-paper-9f3b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .bronze_01ca,
  .hovered-a6d7,
  .copper-ba54,
  .surface-small-da62,
  .texture_fluid_e648,
  .hovered_6311,
  .border_stale_e5a8,
  .detail-east-e11f {
    grid-template-columns: 1fr;
  }
  
  .old_2327 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .next-520d {
    padding: var(--space-lg) 0;
  }
  
  .breadcrumb_cbce li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .breadcrumb_cbce li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .glass_aa66 {
    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;
  }
  
  .old_2327 {
    grid-template-columns: 1fr;
  }
  
  .icon-next-29ef,
  .message_black_d356,
  .notification-white-54e6 {
    flex-direction: column;
    width: 100%;
  }
  
  .out-b6ea,
  .fast_2dad,
  .icon-next-29ef .glass_aa66,
  .message_black_d356 .glass_aa66 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .title-544d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .light-d555 {
    font-size: 1.375rem;
  }
  
  .dropdown_pressed_e838 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .info_576d,
  .banner_aa7a,
  .content_b2d9,
  .focus_3049,
  .picture-9663 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tooltip_3999 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hovered-bc04 {
    gap: var(--space-xs);
  }
  
  .slow_e041 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .current-48d4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .notice_easy_9e81 {
    width: 150px;
    height: 150px;
  }
  
  .dropdown_tiny_4288 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notice_8586,
  .in_afb1,
  .icon-next-29ef,
  .soft-1748,
  .element_956e,
  .grid_cec8,
  .description-02f5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .next-520d {
    page-break-inside: avoid;
  }
}

/* css-noise: bef3 */
.phantom-card-k1 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
