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

.layout-9a57:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.tag-yellow-dce7):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. */
.tag-yellow-dce7,
header,
.main-red-34e7,
.left_9698,
.element-gold-4ed8,
.hard_a307,
.image-5d48,
.component_large_2532,
.hero-down-faa4 {
  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
   ============================================ */
.tag-yellow-dce7 {
  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);
}

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

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

/* Scrolled state */
.tag-yellow-dce7.hovered-69d6 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.surface-3c38 img {
  height: 36px;
  width: auto;
  display: block;
}

.summary-basic-2605 {
  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;
}

.title-f73e {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.nav-6a97 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.brown_1093 svg {
  flex-shrink: 0;
}

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

.preview-huge-c0ad: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);
}

.preview-huge-c0ad svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .title-f73e {
    display: none;
  }
  
  .heading_glass_b2ef {
    display: flex;
  }
  
  .summary-basic-2605 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .brown_1093,
  .preview-huge-c0ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav-6a97 {
    position: relative;
  }
  
  .container_47af {
    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;
  }
  
  .under_471d[aria-expanded="true"] + .container_47af {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .action-5c55 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .caption-87b8 {
    gap: 8px;
  }
  
  .brown_1093 {
    display: none;
  }
  
  .preview-huge-c0ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .surface-3c38 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.header_d592 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.status-cc34 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.border-dynamic-6dd0 {
  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;
}

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

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

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

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

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

.backdrop-narrow-fa08 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.alert-inner-19e4 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .media_a9ba {
    grid-template-columns: 1fr;
  }
  
  .purple-5899 {
    font-size: 1.75rem;
  }
  
  .aside_short_faff {
    order: -1;
    max-width: 100%;
  }
  
  .backdrop-narrow-fa08 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .purple-5899 {
    font-size: 1.5rem;
  }
  
  .alert-fast-c42a {
    font-size: 1rem;
  }
  
  .status-cc34 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .backdrop-narrow-fa08 {
    max-width: 250px;
  }
}

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

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

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

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

.summary-simple-1085:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.outline-center-3809 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.list-pro-554b {
  list-style: none;
  counter-reset: toc-counter;
}

.list-pro-554b li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.list-pro-554b 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);
}

.list-pro-554b 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;
}

.list-pro-554b li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.slow-487c {
  background: var(--color-bg-section);
}

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

.full-17dc {
  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);
}

.gallery-dim-2b83 {
  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);
}

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

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

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

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

.column-complex-c586 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.column-complex-c586 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);
}

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

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

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

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

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

.column-complex-c586 strong {
  font-weight: 600;
  color: var(--color-text);
}

.column-complex-c586 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.column-complex-c586 a:hover {
  color: var(--color-primary-dark);
}

.slow-79ae {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.slow-79ae 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) {
  .content-inner-d790 {
    grid-template-columns: 1fr;
  }
  
  .gallery-dim-2b83 {
    font-size: 1.75rem;
  }
  
  .column-complex-c586 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-dim-2b83 {
    font-size: 1.5rem;
  }
  
  .column-complex-c586 h3 {
    font-size: 1.375rem;
  }
  
  .column-complex-c586 h4 {
    font-size: 1.125rem;
  }
}

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

.icon-04a7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.last-92f6 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.button_in_3040 {
  flex-shrink: 0;
}

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

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

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

.notification-87fa,
.text_961c,
.advanced_fd6c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notification-87fa thead,
.text_961c thead {
  background: var(--color-primary);
  color: white;
}

.notification-87fa th,
.notification-87fa td,
.text_961c th,
.text_961c td,
.advanced_fd6c th,
.advanced_fd6c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notification-87fa th,
  .notification-87fa td,
  .text_961c th,
  .text_961c td,
  .advanced_fd6c th,
  .advanced_fd6c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notification-87fa,
  .text_961c,
  .advanced_fd6c {
    min-width: 600px;
  }
}

.notification-87fa th,
.text_961c th,
.advanced_fd6c th {
  font-weight: 600;
}

.notification-87fa tbody tr:hover,
.text_961c tbody tr:hover,
.advanced_fd6c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.active_hovered_b616 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.disabled-glass-78c1 {
  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);
}

.disabled-glass-78c1 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.new-13cc {
  font-weight: 600;
  color: white;
}

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

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

.overlay_7715 {
  color: #4caf50;
}

.prev-d5fc {
  color: #ff9800;
}

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

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

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

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

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

.sidebar-black-446e {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info_slow_b7bf .light-b022 {
  width: 100%;
  background: white;
}

.row_aaa3 .light-b022 {
  color: #667eea;
}

.smooth-94cd .light-b022 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .row_first_59bc {
    padding: var(--space-md);
  }
  
  .text_under_60bf {
    padding: var(--space-md);
  }
  
  .active-easy-b7df {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.first-6a1a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.solid_6b46,
.grid_86f6,
.down-62d5,
.black-a005 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.search-bright-ef88 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.down-20dd {
  border-color: var(--color-warning);
}

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

.down_088f .shadow_6ce6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.down-20dd .shadow_6ce6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-basic-cb3f {
  margin-top: var(--space-xxl);
}

.east-11b0 {
  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);
}

.form_42cd {
  text-align: center;
}

.link-motion-aa9f {
  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);
}

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

.link-motion-aa9f .new-13cc {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.notice-hovered-9d4d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.tabs-inner-70a9 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.carousel-7a18 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.advanced-8a51 {
  border: 2px solid #4caf50;
}

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

.alert-red-8a93 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.container_6a46 {
  text-align: right;
}

.container_6a46 .active-5124 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.pattern-new-caf4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.aside-clean-3e5c {
  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);
}

.aside-clean-3e5c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.texture-light-1a9e {
  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);
}

.texture-light-1a9e:hover {
  background: var(--color-bg-alt);
}

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

.texture-light-1a9e[aria-expanded="true"] .purple_abf5 {
  transform: rotate(180deg);
}

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

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

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

.grid-prev-a669 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.table-457c {
  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);
}

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

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

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

.grid-0597,
.panel-99d3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.grid-0597 h4,
.panel-99d3 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.grid-0597 ul,
.panel-99d3 ul {
  list-style: none;
  padding: 0;
}

.grid-0597 li,
.panel-99d3 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.background_3a04 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.dynamic-6b07 {
  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);
}

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

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

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

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

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

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

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

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

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

.preview-purple-3fa9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.preview-purple-3fa9 .input_2e65 {
  color: #4caf50;
  font-size: 0.875rem;
}

.bottom-60a3 {
  list-style: none;
  padding: 0;
}

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

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

.bottom-60a3 a:hover {
  color: white;
}

.tertiary-ea00 {
  list-style: none;
  padding: 0;
}

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

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

.tertiary-ea00 a:hover {
  color: white;
}

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

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

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

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

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

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

.widget-rough-b068:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer_9949 {
    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;
  }
  
  .purple-5899 {
    font-size: 2rem;
  }
  
  .gallery-dim-2b83 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .media_a9ba,
  .content-inner-d790 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tag_9d96,
  .wrapper_b0f9,
  .block-5706,
  .tag-5204,
  .thumbnail-bright-70ca,
  .frame_full_391e,
  .motion-65b3,
  .prev-29a2 {
    grid-template-columns: 1fr;
  }
  
  .prev_2e60 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .image-5d48 {
    padding: var(--space-lg) 0;
  }
  
  .list-pro-554b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .list-pro-554b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .light-b022 {
    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;
  }
  
  .prev_2e60 {
    grid-template-columns: 1fr;
  }
  
  .article-6448,
  .shade_in_385a,
  .progress-bright-7f92 {
    flex-direction: column;
    width: 100%;
  }
  
  .border-add4,
  .outline-center-3809,
  .article-6448 .light-b022,
  .shade_in_385a .light-b022 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .purple-5899 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gallery-dim-2b83 {
    font-size: 1.375rem;
  }
  
  .mini-0cb3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .breadcrumb-fb14,
  .notification_first_3c45,
  .left_cfc7,
  .wide_04f4,
  .right_ed58 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .surface_3d39 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .section_8ae1 {
    gap: var(--space-xs);
  }
  
  .header_d592 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .disabled-glass-78c1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .link-motion-aa9f {
    width: 150px;
    height: 150px;
  }
  
  .accent_6185 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tag-yellow-dce7,
  .main-red-34e7,
  .article-6448,
  .right_7a68,
  .component_large_2532,
  .hero-down-faa4,
  .heading_glass_b2ef {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .image-5d48 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 0b43 */
.shadow-element-i5 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
