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

.image-out-f841:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.paragraph-a952):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. */
.paragraph-a952,
header,
.first-c64f,
.notification-cf4a,
.hidden-23d9,
.gallery-center-39fe,
.slider_bde6,
.block_c650,
.link-a520 {
  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
   ============================================ */
.paragraph-a952 {
  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);
}

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

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

/* Scrolled state */
.paragraph-a952.outline-57e7 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.input-first-7a50 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.fluid_eca2 {
  position: relative;
}

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

.carousel-middle-2d4b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.west-cf90 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.north-51e4[aria-expanded="true"] .heading_dim_2bbe:nth-child(2) {
  opacity: 0;
}

.north-51e4[aria-expanded="true"] .heading_dim_2bbe:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .input-first-7a50 {
    display: none;
  }
  
  .north-51e4 {
    display: flex;
  }
  
  .badge_fluid_2e72 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .west-cf90,
  .bright_9510 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .fluid_eca2 {
    position: relative;
  }
  
  .breadcrumb_stone_1ebe {
    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;
  }
  
  .carousel-middle-2d4b[aria-expanded="true"] + .breadcrumb_stone_1ebe {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .red_1989 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .brown-232e {
    gap: 8px;
  }
  
  .west-cf90 {
    display: none;
  }
  
  .bright_9510 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .video_363c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.video_stale_6f0c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.fast-c386 a:hover {
  text-decoration: underline;
}

.icon-542c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.thumbnail-pressed-0d06 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.menu-dim-72b7 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-3f9b {
  position: relative;
  text-align: center;
}

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

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

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

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

.layout-fresh-83c8 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .tall-0f2b {
    grid-template-columns: 1fr;
  }
  
  .table-f32c {
    font-size: 1.75rem;
  }
  
  .menu-dim-72b7 {
    order: -1;
    max-width: 100%;
  }
  
  .widget-3f9b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .table-f32c {
    font-size: 1.5rem;
  }
  
  .image-0fdf {
    font-size: 1rem;
  }
  
  .fast-c386 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .widget-3f9b {
    max-width: 250px;
  }
}

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

.static-6b2b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.dim-6e1b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay-clean-5ef9 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination_huge_e563 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) {
  .small_7099 {
    grid-template-columns: 1fr;
  }
  
  .summary-7812 {
    font-size: 1.75rem;
  }
  
  .hover_rough_d872 {
    max-width: 100%;
  }
}

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

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

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

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

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

.border-lower-11c2 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.huge-6cb9 {
  flex-shrink: 0;
}

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

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

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

.section-fc14,
.footer-mini-33e2,
.pattern_0173 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.section-fc14 thead,
.footer-mini-33e2 thead {
  background: var(--color-primary);
  color: white;
}

.section-fc14 th,
.section-fc14 td,
.footer-mini-33e2 th,
.footer-mini-33e2 td,
.pattern_0173 th,
.pattern_0173 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-fc14 th,
  .section-fc14 td,
  .footer-mini-33e2 th,
  .footer-mini-33e2 td,
  .pattern_0173 th,
  .pattern_0173 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .section-fc14,
  .footer-mini-33e2,
  .pattern_0173 {
    min-width: 600px;
  }
}

.section-fc14 th,
.footer-mini-33e2 th,
.pattern_0173 th {
  font-weight: 600;
}

.section-fc14 tbody tr:hover,
.footer-mini-33e2 tbody tr:hover,
.pattern_0173 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tall_f648 h4 {
  color: white;
}

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

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

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

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

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

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

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

.dropdown-40dd:hover {
  text-decoration: underline;
}

.border-plasma-049a {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.gallery-f2f9 {
  font-weight: 600;
  color: white;
}

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

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

.hover_hard_71cd {
  color: #4caf50;
}

.hero_0418 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .accordion-black-988b {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall-4e8c ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

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

.tall-4e8c .menu-94c3 {
  width: 100%;
  background: white;
}

.orange-2899 .menu-94c3 {
  color: #667eea;
}

.dirty_b6ba .menu-94c3 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .alert_d495 {
    padding: var(--space-md);
  }
  
  .heading_bff1 {
    padding: var(--space-md);
  }
  
  .container_red_a727 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.alert_e3bb,
.gallery_under_7e6a,
.column-2372,
.message_new_f68d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-70e8 {
  border-color: var(--color-warning);
}

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

.silver-c70d .dim_61a0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.table-70e8 .dim_61a0 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-a50b {
  text-align: center;
}

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

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

.input_dirty_a5ed .gallery-f2f9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.heading-8ad7 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.image-7968 {
  border: 2px solid #4caf50;
}

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

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

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

.fixed-3cda {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.search-3ee3 {
  text-align: right;
}

.search-3ee3 .pattern-dd2d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.tag-53af {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-06db {
  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);
}

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

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

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

.small-2acc,
.left-7d0c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.small-2acc h4,
.left-7d0c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.small-2acc ul,
.left-7d0c ul {
  list-style: none;
  padding: 0;
}

.small-2acc li,
.left-7d0c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.tag-18d4 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.primary_stale_1d02 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.short_9387 .photo_static_8a82 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.pressed_8791 a:hover {
  color: white;
}

.accordion-9dc0 {
  list-style: none;
  padding: 0;
}

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

.accordion-9dc0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.accordion-9dc0 a:hover {
  color: white;
}

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

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

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

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

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

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

.slow-3646:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gradient_paper_bc50 {
    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;
  }
  
  .table-f32c {
    font-size: 2rem;
  }
  
  .summary-7812 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tall-0f2b,
  .small_7099 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accordion-black-988b,
  .media_hard_f669,
  .popup_da8d,
  .slow-3331,
  .content_d49c,
  .backdrop-outer-c9a5,
  .solid_0d67,
  .short-af54 {
    grid-template-columns: 1fr;
  }
  
  .card-down-0622 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .slider_bde6 {
    padding: var(--space-lg) 0;
  }
  
  .selected_148f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .selected_148f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .menu-94c3 {
    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;
  }
  
  .card-down-0622 {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-pressed-0d06,
  .highlight-d34a,
  .basic_11e7 {
    flex-direction: column;
    width: 100%;
  }
  
  .dim-6e1b,
  .thumbnail_focused_56f0,
  .thumbnail-pressed-0d06 .menu-94c3,
  .highlight-d34a .menu-94c3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .table-f32c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .summary-7812 {
    font-size: 1.375rem;
  }
  
  .card_light_6df9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .clean_3f6e,
  .right-22ba,
  .pattern-basic-b8f6,
  .large-3d47,
  .preview_tall_5fd0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .cool-21d5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gas_71d8 {
    gap: var(--space-xs);
  }
  
  .video_stale_6f0c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .over-bd5d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .input_dirty_a5ed {
    width: 150px;
    height: 150px;
  }
  
  .container_4e95 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .paragraph-a952,
  .first-c64f,
  .thumbnail-pressed-0d06,
  .solid-d08d,
  .block_c650,
  .link-a520,
  .north-51e4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .slider_bde6 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 53e2 */
.shadow-element-a8 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.3;
}
