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

.hot_d2d4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.border_slow_2e8a):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. */
.border_slow_2e8a,
header,
.hovered-d0fe,
.accordion-1fc2,
.image_east_7078,
.title-0aaf,
.new-8518,
.active-liquid-b922,
.iron_ddb4 {
  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
   ============================================ */
.border_slow_2e8a {
  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);
}

.content-complex-fd8c {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.caption-c51d {
  flex: 1;
}

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

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

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

.icon_down_fc49.layout-short-2308 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.highlight-9041 {
  position: relative;
}

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

.active-b1f2 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.icon_87d7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.link_98bc[aria-expanded="true"] .media-2f35:nth-child(2) {
  opacity: 0;
}

.link_98bc[aria-expanded="true"] .media-2f35:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .caption-c51d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .caption-c51d.pro-0ae2 {
    display: block;
    right: 0;
  }
  
  .feature_513b {
    flex-direction: column;
    gap: 0;
  }
  
  .icon_down_fc49 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .caption-c51d::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;
  }
  
  .caption-c51d.pro-0ae2::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .caption-c51d {
    display: none;
  }
  
  .link_98bc {
    display: flex;
  }
  
  .white_f661 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .icon_87d7,
  .west_baaf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .highlight-9041 {
    position: relative;
  }
  
  .container_59e2 {
    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;
  }
  
  .active-b1f2[aria-expanded="true"] + .container_59e2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .detail_1c73 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .lite-41ea {
    gap: 8px;
  }
  
  .icon_87d7 {
    display: none;
  }
  
  .west_baaf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .popup_hard_90f2 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.liquid_e94e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic-54e4 {
  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;
}

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

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

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

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

.link-complex-11fb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mask-ffc4 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .video-east-3a97 {
    grid-template-columns: 1fr;
  }
  
  .grid-ee1a {
    font-size: 1.75rem;
  }
  
  .link-complex-11fb {
    order: -1;
    max-width: 100%;
  }
  
  .mask-ffc4 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .grid-ee1a {
    font-size: 1.5rem;
  }
  
  .component_wood_490e {
    font-size: 1rem;
  }
  
  .dropdown_09c3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask-ffc4 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.breadcrumb-brown-f202 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.gallery-bottom-c8a9 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.gallery-bottom-c8a9 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);
}

.gallery-bottom-c8a9 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;
}

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

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

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

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

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

.search-0dfc {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old-7a6b {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.old-7a6b 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) {
  .mask_bronze_cbd1 {
    grid-template-columns: 1fr;
  }
  
  .search-0dfc {
    font-size: 1.75rem;
  }
  
  .hidden_2bb2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .search-0dfc {
    font-size: 1.5rem;
  }
  
  .hidden_2bb2 h3 {
    font-size: 1.375rem;
  }
  
  .hidden_2bb2 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.caption-fast-73e4 {
  flex-shrink: 0;
}

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

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

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

.slider-a2b6,
.paragraph_9ab3,
.stone-d5e6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.slider-a2b6 thead,
.paragraph_9ab3 thead {
  background: var(--color-primary);
  color: white;
}

.slider-a2b6 th,
.slider-a2b6 td,
.paragraph_9ab3 th,
.paragraph_9ab3 td,
.stone-d5e6 th,
.stone-d5e6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .slider-a2b6 th,
  .slider-a2b6 td,
  .paragraph_9ab3 th,
  .paragraph_9ab3 td,
  .stone-d5e6 th,
  .stone-d5e6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .slider-a2b6,
  .paragraph_9ab3,
  .stone-d5e6 {
    min-width: 600px;
  }
}

.slider-a2b6 th,
.paragraph_9ab3 th,
.stone-d5e6 th {
  font-weight: 600;
}

.slider-a2b6 tbody tr:hover,
.paragraph_9ab3 tbody tr:hover,
.stone-d5e6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.highlight_5f55 h4 {
  color: white;
}

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

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

.form-pressed-070e:last-child {
  border-bottom: none;
}

.form-pressed-070e dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.form-pressed-070e dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.wrapper-over-9da4 {
  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);
}

.wrapper-over-9da4 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.thumbnail-next-686b {
  font-weight: 600;
  color: white;
}

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

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

.status_ebbd {
  color: #4caf50;
}

.light-8238 {
  color: #ff9800;
}

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

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

.image-tall-3e6c {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.active-3c23 {
  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;
}

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

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

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

.thumbnail-next-686b {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.icon-pressed-5e94 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.icon-pressed-5e94 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.icon-pressed-5e94 li {
  padding: var(--space-xs) 0;
  color: white;
}

.icon-pressed-5e94 .overlay_bbbc {
  width: 100%;
  background: white;
}

.popup_2df0 .overlay_bbbc {
  color: #667eea;
}

.avatar_glass_b349 .overlay_bbbc {
  color: #f5576c;
}

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

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

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

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

.header-first-826b h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .header-first-826b {
    padding: var(--space-md);
  }
  
  .slow_7ad1 {
    padding: var(--space-md);
  }
  
  .new-3218 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.purple-252f,
.hovered_ea30,
.smooth_ac80,
.dirty-61f1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.module-pink-2c38 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.active-steel-6c95 {
  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) {
  .active-steel-6c95 {
    font-size: 0.625rem;
  }
}

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

.tooltip-wide-b480:hover {
  background: var(--color-primary-dark);
}

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

.content-54c1 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.outline-iron-30a6 {
  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);
}

.black_8c05 .outline-iron-30a6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.avatar_plasma_197f .outline-iron-30a6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.paragraph-4a4a {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

.footer-gas-6138 {
  margin-top: var(--space-xxl);
}

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

.sort_0c41 {
  text-align: center;
}

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

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

.tertiary_red_f356 .thumbnail-next-686b {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.inner-9b5c {
  margin-bottom: var(--space-xl);
}

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

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

.active-4c50 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.progress-current-33bb {
  border: 2px solid #4caf50;
}

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

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

.content-6d90 {
  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;
}

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

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

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

.video_black_1431 {
  text-align: right;
}

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

.input-hard-356c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.chip-short-2b5d {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.red-98dc {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.photo-0a24 strong {
  color: var(--color-primary);
}

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

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

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

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

.link-87c9 {
  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);
}

.link-87c9:hover {
  background: var(--color-bg-alt);
}

.pagination-right-c48d {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.link-87c9[aria-expanded="true"] .pagination-right-c48d {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.item-stale-f0a3 {
  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);
}

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

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

@media (max-width: 768px) {
  .highlight-under-9bfa {
    grid-template-columns: 1fr;
  }
}

.black-e956,
.focus-static-330f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.black-e956 h4,
.focus-static-330f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.black-e956 ul,
.focus-static-330f ul {
  list-style: none;
  padding: 0;
}

.black-e956 li,
.focus-static-330f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.nav-black-51bf {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.nav-black-51bf ul {
  list-style: none;
  padding: 0;
}

.nav-black-51bf li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.frame-8356 {
  font-style: italic;
}

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

.stale-93fd {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone_ee03 .icon_west_eb21 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.text_8480 a:hover {
  color: white;
}

.block-c011 {
  list-style: none;
  padding: 0;
}

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

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

.block-c011 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .huge-b145 {
    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;
  }
  
  .grid-ee1a {
    font-size: 2rem;
  }
  
  .search-0dfc {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .video-east-3a97,
  .mask_bronze_cbd1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .bottom_6f83,
  .video_action_f869,
  .photo-f8a9,
  .blue_045a,
  .highlight-under-9bfa,
  .gallery_daa7,
  .green_4b61,
  .input-stale-57cc {
    grid-template-columns: 1fr;
  }
  
  .steel_b69c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .new-8518 {
    padding: var(--space-lg) 0;
  }
  
  .gallery-bottom-c8a9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gallery-bottom-c8a9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .overlay_bbbc {
    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;
  }
  
  .steel_b69c {
    grid-template-columns: 1fr;
  }
  
  .mask_43c0,
  .header-de25,
  .dim_dfde {
    flex-direction: column;
    width: 100%;
  }
  
  .simple_585d,
  .breadcrumb-brown-f202,
  .mask_43c0 .overlay_bbbc,
  .header-de25 .overlay_bbbc {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .grid-ee1a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .search-0dfc {
    font-size: 1.375rem;
  }
  
  .tabs-d42f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .progress-b551,
  .static-dd90,
  .dropdown_da2c,
  .brown_f01a,
  .photo_in_1c5d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .active-steel-6c95 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .feature-old-cfa8 {
    gap: var(--space-xs);
  }
  
  .liquid_e94e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .wrapper-over-9da4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tertiary_red_f356 {
    width: 150px;
    height: 150px;
  }
  
  .article_plasma_772c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .border_slow_2e8a,
  .hovered-d0fe,
  .mask_43c0,
  .stale-93fd,
  .active-liquid-b922,
  .iron_ddb4,
  .link_98bc {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .new-8518 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a47d */
.ghost-box-t6 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.2;
}
