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

.item_17ae:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.tabs_0100):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. */
.tabs_0100,
header,
.tooltip-under-289a,
.surface_dark_67b6,
.border-next-65aa,
.paragraph_e03d,
.new-709a,
.cold-ab9c,
.small_d9a9 {
  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
   ============================================ */
.tabs_0100 {
  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);
}

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

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

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

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

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

.fluid-0119 img {
  height: 36px;
  width: auto;
  display: block;
}

.gallery-3a9d {
  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;
}

.left-9edd {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.banner-678c {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.main-fluid-b0cc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tooltip-wood-acfa[aria-expanded="true"] .thumbnail-7a9e:nth-child(2) {
  opacity: 0;
}

.tooltip-wood-acfa[aria-expanded="true"] .thumbnail-7a9e:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .left-9edd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .left-9edd.gradient_331f {
    display: block;
    right: 0;
  }
  
  .cold-ca50 {
    flex-direction: column;
    gap: 0;
  }
  
  .card_bc3e {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .left-9edd::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;
  }
  
  .left-9edd.gradient_331f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .left-9edd {
    display: none;
  }
  
  .tooltip-wood-acfa {
    display: flex;
  }
  
  .gallery-3a9d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .main-fluid-b0cc,
  .surface_action_e31b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .banner-678c {
    position: relative;
  }
  
  .header_bronze_d1cd {
    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;
  }
  
  .layout_add1[aria-expanded="true"] + .header_bronze_d1cd {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .dropdown-outer-225a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .filter_brown_c045 {
    gap: 8px;
  }
  
  .main-fluid-b0cc {
    display: none;
  }
  
  .surface_action_e31b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fluid-0119 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.pro-403a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pro-403a svg {
  flex-shrink: 0;
}

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

.pro-403a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.gradient-silver-427a a {
  color: var(--color-primary);
  text-decoration: none;
}

.gradient-silver-427a a:hover {
  text-decoration: underline;
}

.layout-up-1f37 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.summary-selected-74d8 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

.tooltip-middle-58ff {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .preview_30d7 {
    grid-template-columns: 1fr;
  }
  
  .frame-in-d527 {
    font-size: 1.75rem;
  }
  
  .summary-selected-74d8 {
    order: -1;
    max-width: 100%;
  }
  
  .red_3c3c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .frame-in-d527 {
    font-size: 1.5rem;
  }
  
  .selected_b836 {
    font-size: 1rem;
  }
  
  .gradient-silver-427a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .red_3c3c {
    max-width: 250px;
  }
}

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

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

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

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

.up-83de:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.message-east-1bd2 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.main-tiny-5dc0 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-in-87d0 {
  background: var(--color-bg-section);
}

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

.liquid-9b08 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_dcb2 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) {
  .component_87c4 {
    grid-template-columns: 1fr;
  }
  
  .outer_cb72 {
    font-size: 1.75rem;
  }
  
  .filter_plasma_94a4 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.pro-cd4d {
  flex-shrink: 0;
}

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

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

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

.heading-d559,
.left-482e,
.border-hovered-a031 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.heading-d559 thead,
.left-482e thead {
  background: var(--color-primary);
  color: white;
}

.heading-d559 th,
.heading-d559 td,
.left-482e th,
.left-482e td,
.border-hovered-a031 th,
.border-hovered-a031 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .heading-d559 th,
  .heading-d559 td,
  .left-482e th,
  .left-482e td,
  .border-hovered-a031 th,
  .border-hovered-a031 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .heading-d559,
  .left-482e,
  .border-hovered-a031 {
    min-width: 600px;
  }
}

.heading-d559 th,
.left-482e th,
.border-hovered-a031 th {
  font-weight: 600;
}

.heading-d559 tbody tr:hover,
.left-482e tbody tr:hover,
.border-hovered-a031 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.icon-2404 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.notice-top-1230 {
  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);
}

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

.caption-886b {
  font-weight: 600;
  color: white;
}

.outline-4c8d {
  list-style: none;
  padding: 0;
}

.outline-4c8d li {
  padding: var(--space-xs) 0;
}

.surface_3aa5 {
  color: #4caf50;
}

.dropdown-dynamic-5559 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .gradient-top-5a42 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-dark-221e {
  margin-top: var(--space-xxl);
}

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

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

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

.outline-up-9c86 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.outline-up-9c86 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.outline-up-9c86 li {
  padding: var(--space-xs) 0;
  color: white;
}

.outline-up-9c86 .heading-80b8 {
  width: 100%;
  background: white;
}

.lite-7e8d .heading-80b8 {
  color: #667eea;
}

.element-be0c .heading-80b8 {
  color: #f5576c;
}

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

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

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

.tag-9b13 {
  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);
}

.rough-61e3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.highlight-thick-5297 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .rough-61e3 {
    padding: var(--space-md);
  }
  
  .highlight-thick-5297 {
    padding: var(--space-md);
  }
  
  .dark_b344 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.large-5b8c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.main_dynamic_eb0f,
.warm_803a,
.dropdown-slow-944d,
.slider_white_90f3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bright-0f3f {
  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);
}

.pro-a47e .bright-0f3f {
  background: #e8f5e9;
  color: var(--color-success);
}

.accent_out_4f9f .bright-0f3f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.wrapper-be63 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.sidebar-short-3657 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.detail_east_8810 {
  text-align: center;
}

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

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

.item_new_8fc1 .caption-886b {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.active-tall-6b9a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

.east-9eef {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.border-iron-1b9a {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

.card-dynamic-546d {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

.header-wide-0ee5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.mask_hard_99e6 {
  text-align: right;
}

.mask_hard_99e6 .description-0aff {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.menu-dim-14bc {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.bronze-8e55 {
  background: #e3f2fd;
  color: #1565c0;
}

.nav-3e13 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-1cff {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.section_a74f[aria-expanded="true"] .slider-1cff {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-62b8,
.text_39cf {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hero-62b8 h4,
.text_39cf h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hero-62b8 ul,
.text_39cf ul {
  list-style: none;
  padding: 0;
}

.hero-62b8 li,
.text_39cf li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.dropdown-5cb3 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.list_tiny_9a09 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module_b1c0 .item-d3dc {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.white_d2db a:hover {
  color: white;
}

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

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

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

.frame_cool_b36b a:hover {
  color: white;
}

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

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

.gallery-simple-c79d a {
  color: #4caf50;
  text-decoration: none;
}

.sort-easy-87eb {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .shade-2099 {
    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;
  }
  
  .frame-in-d527 {
    font-size: 2rem;
  }
  
  .outer_cb72 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .preview_30d7,
  .component_87c4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .gradient-top-5a42,
  .stale-5246,
  .carousel_5288,
  .media-tall-f5a6,
  .red_2e20,
  .summary_solid_ad67,
  .fixed-74a2,
  .medium-030c {
    grid-template-columns: 1fr;
  }
  
  .icon-next-9a1a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .new-709a {
    padding: var(--space-lg) 0;
  }
  
  .title_bottom_96d5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .title_bottom_96d5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .heading-80b8 {
    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;
  }
  
  .icon-next-9a1a {
    grid-template-columns: 1fr;
  }
  
  .cold_728b,
  .box_tiny_2fc8,
  .component_wide_1b63 {
    flex-direction: column;
    width: 100%;
  }
  
  .message-east-1bd2,
  .main-tiny-5dc0,
  .cold_728b .heading-80b8,
  .box_tiny_2fc8 .heading-80b8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .frame-in-d527 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .outer_cb72 {
    font-size: 1.375rem;
  }
  
  .title-bfc9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .article-3db5,
  .list_short_0e9e,
  .outline-f71c,
  .solid-9130,
  .text-2002 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .section-full-cfca {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .layout-da32 {
    gap: var(--space-xs);
  }
  
  .pro-403a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .notice-top-1230 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .item_new_8fc1 {
    width: 150px;
    height: 150px;
  }
  
  .panel_b246 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tabs_0100,
  .tooltip-under-289a,
  .cold_728b,
  .fluid-3254,
  .cold-ab9c,
  .small_d9a9,
  .tooltip-wood-acfa {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .new-709a {
    page-break-inside: avoid;
  }
}

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

/* css-noise: af87 */
.ghost-box-m1 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.2;
}
