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

.paragraph_b9ce:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.red_b0b3,
header,
.in-5360,
.label_rough_f536,
.form-3666,
.active-1162,
.tag-last-5f98,
.main_c950,
.notification-ad00 {
  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
   ============================================ */
.red_b0b3 {
  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);
}

.stale-851a {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.red_b0b3.logo-up-5a62 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.highlight-small-c5bc img {
  height: 36px;
  width: auto;
  display: block;
}

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

.detail_9176 {
  flex: 1;
}

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

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

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

.tiny_f741.fn-active-8f9b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_8efe svg {
  flex-shrink: 0;
}

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

.slow-65fc: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);
}

.slow-65fc svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.column-basic-11da[aria-expanded="true"] .easy-f780:nth-child(2) {
  opacity: 0;
}

.column-basic-11da[aria-expanded="true"] .easy-f780:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .detail_9176 {
    display: none;
  }
  
  .column-basic-11da {
    display: flex;
  }
  
  .small-a783 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .center_8efe,
  .slow-65fc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .slow_66eb {
    position: relative;
  }
  
  .outline-9038 {
    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;
  }
  
  .nav_fast_53f4[aria-expanded="true"] + .outline-9038 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .item-full-c149 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .container-brown-678e {
    gap: 8px;
  }
  
  .center_8efe {
    display: none;
  }
  
  .slow-65fc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .highlight-small-c5bc img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.wrapper_iron_b763 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.orange-74b5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.orange-74b5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.sort-bottom-9042 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.main-pink-a124 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden-3180 {
  position: relative;
  text-align: center;
}

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

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

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

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

.avatar-paper-637f {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .caption_40cd {
    grid-template-columns: 1fr;
  }
  
  .accent_51d2 {
    font-size: 1.75rem;
  }
  
  .main-pink-a124 {
    order: -1;
    max-width: 100%;
  }
  
  .hidden-3180 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .accent_51d2 {
    font-size: 1.5rem;
  }
  
  .brown_e145 {
    font-size: 1rem;
  }
  
  .orange-74b5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hidden-3180 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.lower-34b4 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.photo-narrow-0a44 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.gallery-middle-6b81:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

.picture-7746 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;
}

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

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

.header-white-fd6e {
  background: var(--color-bg-section);
}

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

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

.header-91cb {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section_next_13db 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) {
  .notification_next_c81e {
    grid-template-columns: 1fr;
  }
  
  .header-91cb {
    font-size: 1.75rem;
  }
  
  .texture-e218 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header-91cb {
    font-size: 1.5rem;
  }
  
  .texture-e218 h3 {
    font-size: 1.375rem;
  }
  
  .texture-e218 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.block-purple-9ef2 {
  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;
}

.easy_5b2d {
  flex-shrink: 0;
}

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

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

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

.gradient_b168,
.nav-e7f5,
.image_2dd6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gradient_b168 thead,
.nav-e7f5 thead {
  background: var(--color-primary);
  color: white;
}

.gradient_b168 th,
.gradient_b168 td,
.nav-e7f5 th,
.nav-e7f5 td,
.image_2dd6 th,
.image_2dd6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gradient_b168 th,
  .gradient_b168 td,
  .nav-e7f5 th,
  .nav-e7f5 td,
  .image_2dd6 th,
  .image_2dd6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gradient_b168,
  .nav-e7f5,
  .image_2dd6 {
    min-width: 600px;
  }
}

.gradient_b168 th,
.nav-e7f5 th,
.image_2dd6 th {
  font-weight: 600;
}

.gradient_b168 tbody tr:hover,
.nav-e7f5 tbody tr:hover,
.image_2dd6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fresh-3458 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.element-pro-7850 {
  list-style: none;
  padding: 0;
}

.element-pro-7850 li {
  padding: var(--space-xs) 0;
}

.button_gas_ccdb {
  color: #4caf50;
}

.column-246b {
  color: #ff9800;
}

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

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

.modal-yellow-5fd6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-76c7 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.sidebar_8649 .pattern_down_7833 {
  width: 100%;
  background: white;
}

.header_1117 .pattern_down_7833 {
  color: #667eea;
}

.breadcrumb-hard-3761 .pattern_down_7833 {
  color: #f5576c;
}

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

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

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

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

.up-3d7a h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .up-3d7a {
    padding: var(--space-md);
  }
  
  .list_purple_9f16 {
    padding: var(--space-md);
  }
  
  .slider_yellow_1486 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.info_2914,
.description-large-a181,
.container_west_fbd5,
.wood_78b8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.container-gas-4c21 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

.steel-86b7 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.message-eca9 .avatar_rough_6e5e {
  background: #e8f5e9;
  color: var(--color-success);
}

.plasma-9935 .avatar_rough_6e5e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-next-8530 {
  margin-top: var(--space-xxl);
}

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

.brown_5592 {
  text-align: center;
}

.north-60c6 {
  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);
}

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

.north-60c6 .filter_d014 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.popup-pro-a2cc {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.chip-focused-2b06 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.outer-80ae {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.stone-7a5d {
  text-align: right;
}

.stone-7a5d .hover_tiny_0777 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.red-2bbd {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inner_d2b2[aria-expanded="true"] .table-cd07 {
  transform: rotate(180deg);
}

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

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

.progress-yellow-2d1d ul,
.progress-yellow-2d1d ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.progress-yellow-2d1d li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.column-cb45,
.aside-2cf1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.column-cb45 h4,
.aside-2cf1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.column-cb45 ul,
.aside-2cf1 ul {
  list-style: none;
  padding: 0;
}

.column-cb45 li,
.aside-2cf1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.tag-467a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.section_small_0a27 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .active-warm-60c3 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.active-c673 {
  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) */
.texture-left-79b0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.hot-959e {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-959e li {
  margin-bottom: var(--space-xs);
}

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

.hot-959e a:hover {
  color: white;
}

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

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

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

.stale-53f4 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.stale-53f4 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.stale-53f4 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .active-c673,
  .texture-left-79b0 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.heading_medium_f887 .sort-bottom-9042 {
  color: #4caf50;
  font-size: 0.875rem;
}

.box-a97a {
  list-style: none;
  padding: 0;
}

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

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

.box-a97a a:hover {
  color: white;
}

.bronze-481e {
  list-style: none;
  padding: 0;
}

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

.bronze-481e a {
  color: #b0b0b0;
  text-decoration: none;
}

.bronze-481e a:hover {
  color: white;
}

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

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

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

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

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

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

.item-4630 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;
}

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

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

@media (max-width: 768px) {
  .under_a787 {
    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;
  }
  
  .accent_51d2 {
    font-size: 2rem;
  }
  
  .header-91cb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .caption_40cd,
  .notification_next_c81e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .highlight-top-cf06,
  .badge_warm_3469,
  .paper_20d8,
  .center-e372,
  .secondary_small_4e8e,
  .south-948e,
  .active-warm-60c3,
  .active-c673,
  .texture-left-79b0 {
    grid-template-columns: 1fr;
  }
  
  .outline_0989 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tag-last-5f98 {
    padding: var(--space-lg) 0;
  }
  
  .picture-7746 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .picture-7746 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pattern_down_7833 {
    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;
  }
  
  .outline_0989 {
    grid-template-columns: 1fr;
  }
  
  .footer_in_9c5e,
  .thumbnail_6a9f,
  .photo_pressed_abf1 {
    flex-direction: column;
    width: 100%;
  }
  
  .lower-34b4,
  .photo-narrow-0a44,
  .footer_in_9c5e .pattern_down_7833,
  .thumbnail_6a9f .pattern_down_7833 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .accent_51d2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .header-91cb {
    font-size: 1.375rem;
  }
  
  .list-prev-7e9e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .gallery-middle-6b81,
  .row_pink_8375,
  .steel_1fd1,
  .wide_e059,
  .highlight-b5e1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .status_fluid_52a0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hidden-e9ee {
    gap: var(--space-xs);
  }
  
  .wrapper_iron_b763 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hot_2d2c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .north-60c6 {
    width: 150px;
    height: 150px;
  }
  
  .popup-dirty-f887 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .red_b0b3,
  .in-5360,
  .footer_in_9c5e,
  .lower-b25d,
  .main_c950,
  .notification-ad00,
  .column-basic-11da {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tag-last-5f98 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1790 */
.shadow-element-z9 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.3;
}
