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

.medium_c626:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.hero-basic-10fb,
header,
.message-out-6f37,
.backdrop-solid-f6dc,
.down_c13f,
.lite-f67c,
.texture-e708,
.fast_4949,
.light-2c2d {
  max-width: none;
}

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

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

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

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

.list-4b11 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.hero-basic-10fb.filter_ffe6 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.block-tall-c9d3 {
  flex: 1;
}

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

.active-36f7 {
  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);
}

.active-36f7:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.active-36f7.fn-active-f5ca {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-selected-bc4c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .block-tall-c9d3::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .block-tall-c9d3.east_d358 {
    display: block;
    right: 0;
  }
  
  .surface-green-361c {
    flex-direction: column;
    gap: 0;
  }
  
  .active-36f7 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .block-tall-c9d3::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;
  }
  
  .block-tall-c9d3.east_d358::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .block-tall-c9d3 {
    display: none;
  }
  
  .section_red_85b3 {
    display: flex;
  }
  
  .label_brown_06b2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .footer-selected-bc4c,
  .gradient_e159 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .filter_a237 {
    position: relative;
  }
  
  .slow-a77b {
    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;
  }
  
  .surface_left_6477[aria-expanded="true"] + .slow-a77b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slow_96f9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .label-ebe5 {
    gap: 8px;
  }
  
  .footer-selected-bc4c {
    display: none;
  }
  
  .gradient_e159 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hero_black_7611 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.silver-d126 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

.title-878e {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .title-878e {
    font-size: 2rem;
  }
}

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

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

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

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

.status-0a74 {
  display: flex;
  gap: var(--space-sm);
}

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

.fluid-4ed4 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fluid-4ed4 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.active-608d {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tooltip-04e1 {
    grid-template-columns: 1fr;
  }
  
  .title-878e {
    font-size: 1.75rem;
  }
  
  .clean_78fe {
    order: -1;
    max-width: 100%;
  }
  
  .active-608d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .title-878e {
    font-size: 1.5rem;
  }
  
  .footer-action-cef8 {
    font-size: 1rem;
  }
  
  .sort_brown_372a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .active-608d {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.slider-easy-6a7e {
  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;
}

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

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

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

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

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

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

.icon-7ae8 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.focus-16e4 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.texture-3a53 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.texture-3a53 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);
}

.texture-3a53 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-2486 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) {
  .column-orange-5789 {
    grid-template-columns: 1fr;
  }
  
  .focus-ddf3 {
    font-size: 1.75rem;
  }
  
  .grid_035f {
    max-width: 100%;
  }
}

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

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

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

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

.first-5be2 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.wide_54be {
  flex-shrink: 0;
}

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

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

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

.overlay-3fe6,
.progress-308d,
.wrapper-0629 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.overlay-3fe6 thead,
.progress-308d thead {
  background: var(--color-primary);
  color: white;
}

.overlay-3fe6 th,
.overlay-3fe6 td,
.progress-308d th,
.progress-308d td,
.wrapper-0629 th,
.wrapper-0629 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .overlay-3fe6 th,
  .overlay-3fe6 td,
  .progress-308d th,
  .progress-308d td,
  .wrapper-0629 th,
  .wrapper-0629 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .overlay-3fe6,
  .progress-308d,
  .wrapper-0629 {
    min-width: 600px;
  }
}

.overlay-3fe6 th,
.progress-308d th,
.wrapper-0629 th {
  font-weight: 600;
}

.overlay-3fe6 tbody tr:hover,
.progress-308d tbody tr:hover,
.wrapper-0629 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.chip-281b h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media_dca4 {
  color: #4caf50;
}

.grid_712e {
  color: #ff9800;
}

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

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

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

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

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

.aside-blue-3d34 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-in-3579 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.input-in-3579 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.input-in-3579 li {
  padding: var(--space-xs) 0;
  color: white;
}

.input-in-3579 .slider-easy-6a7e {
  width: 100%;
  background: white;
}

.stale_0e3f .slider-easy-6a7e {
  color: #667eea;
}

.disabled-7009 .slider-easy-6a7e {
  color: #f5576c;
}

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

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

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

.complex-71de {
  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);
}

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

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

@media (max-width: 768px) {
  .breadcrumb_brown_a02f {
    padding: var(--space-md);
  }
  
  .focused-6224 {
    padding: var(--space-md);
  }
  
  .menu_1995 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.dirty-04ff,
.breadcrumb-44d3,
.accent_58fc,
.breadcrumb-silver-8016 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.over-622e:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

.accordion-steel-a535 {
  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-steel-a535 {
    grid-template-columns: 1fr;
  }
}

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

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

.prev-2a7d {
  border-color: var(--color-warning);
}

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

.text_8761 .avatar_2aec {
  background: #e8f5e9;
  color: var(--color-success);
}

.prev-2a7d .avatar_2aec {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.breadcrumb-7e53 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.logo-cb94 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.upper-46d6 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.smooth-0500 {
  text-align: right;
}

.smooth-0500 .active-f650 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.modal-over-27db {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.fresh-cd06 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.hero-black-a250 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.row-963e strong {
  color: var(--color-primary);
}

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

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

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

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

.link_27c4 {
  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_27c4:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_16e7,
.backdrop-red-b806 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.gradient_16e7 h4,
.backdrop-red-b806 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.gradient_16e7 ul,
.backdrop-red-b806 ul {
  list-style: none;
  padding: 0;
}

.gradient_16e7 li,
.backdrop-red-b806 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tag_22c3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.accent-ddc1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.border_fresh_8bb7 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.border_fresh_8bb7 a:hover {
  color: white;
}

.active-efbd {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.active-efbd a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.active-efbd a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.image-5d70 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.image-5d70 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.image-5d70 a:hover {
  color: white;
}

.wide_2ad9 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .center-cfde,
  .accent-ddc1 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.focused-898c .status-0a74 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.notification_13d8 a:hover {
  color: white;
}

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

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

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

.logo_0ce8 a:hover {
  color: white;
}

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

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

.nav-fresh-3788 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.focused-3874 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.focused-3874 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .wide_2ad9 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .title-878e {
    font-size: 2rem;
  }
  
  .focus-ddf3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tooltip-04e1,
  .column-orange-5789 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .aside-9fc1,
  .accordion-steel-a535,
  .gas_8229,
  .media_stone_53dd,
  .widget-bright-0347,
  .sidebar_b786,
  .section_rough_4a6d,
  .center-cfde,
  .accent-ddc1 {
    grid-template-columns: 1fr;
  }
  
  .advanced_5397 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .texture-e708 {
    padding: var(--space-lg) 0;
  }
  
  .texture-3a53 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .texture-3a53 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .slider-easy-6a7e {
    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;
  }
  
  .advanced_5397 {
    grid-template-columns: 1fr;
  }
  
  .texture_87ad,
  .top_5e49,
  .preview-large-7be2 {
    flex-direction: column;
    width: 100%;
  }
  
  .icon-7ae8,
  .focus-16e4,
  .texture_87ad .slider-easy-6a7e,
  .top_5e49 .slider-easy-6a7e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .title-878e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .focus-ddf3 {
    font-size: 1.375rem;
  }
  
  .video-31c0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .top_6164,
  .text_27bb,
  .shade_c020,
  .hover-selected-77af,
  .component_2bf0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .logo-plasma-fb14 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hero_4433 {
    gap: var(--space-xs);
  }
  
  .silver-d126 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .complex-fce8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .in_36af {
    width: 150px;
    height: 150px;
  }
  
  .over_d193 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hero-basic-10fb,
  .message-out-6f37,
  .texture_87ad,
  .input_active_0c24,
  .fast_4949,
  .light-2c2d,
  .section_red_85b3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .texture-e708 {
    page-break-inside: avoid;
  }
}

/* css-noise: 422c */
.shadow-element-c7 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
