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

.last_bac0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.widget_ef2f,
header,
.footer_bottom_fcc9,
.avatar_985d,
.wrapper_b78e,
.accent-fast-dc6f,
.copper-504e,
.hover_6e74,
.banner_f2eb {
  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
   ============================================ */
.widget_ef2f {
  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);
}

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

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

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

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

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

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

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

.badge_0df2 {
  flex: 1;
}

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

.banner-47c7 {
  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);
}

.banner-47c7:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.banner-47c7.fn-active-b5d8 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.detail-outer-68ba {
  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;
}

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

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

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

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

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

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

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

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

.secondary_bd70 svg {
  flex-shrink: 0;
}

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

.message-036c: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);
}

.message-036c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.article-orange-9f33 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.section-65b0[aria-expanded="true"] .article-orange-9f33:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.section-65b0[aria-expanded="true"] .article-orange-9f33:nth-child(2) {
  opacity: 0;
}

.section-65b0[aria-expanded="true"] .article-orange-9f33:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .badge_0df2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .badge_0df2.background-pro-513c {
    display: block;
    right: 0;
  }
  
  .title-solid-76cd {
    flex-direction: column;
    gap: 0;
  }
  
  .banner-47c7 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .badge_0df2::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;
  }
  
  .badge_0df2.background-pro-513c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .badge_0df2 {
    display: none;
  }
  
  .section-65b0 {
    display: flex;
  }
  
  .notice-bfef {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .secondary_bd70,
  .message-036c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component_3766 {
    position: relative;
  }
  
  .detail-outer-68ba {
    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;
  }
  
  .overlay_1145[aria-expanded="true"] + .detail-outer-68ba {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .video_smooth_eac3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .layout_28f7 {
    gap: 8px;
  }
  
  .secondary_bd70 {
    display: none;
  }
  
  .message-036c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .short_6bcf img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.cold-789f {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cold-789f svg {
  flex-shrink: 0;
}

.cold-789f a {
  color: var(--color-primary);
  text-decoration: none;
}

.cold-789f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.medium-fa9a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.title-green-090d {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .upper_46d0 {
    grid-template-columns: 1fr;
  }
  
  .new_649e {
    font-size: 1.75rem;
  }
  
  .center_0cca {
    order: -1;
    max-width: 100%;
  }
  
  .medium-fa9a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .new_649e {
    font-size: 1.5rem;
  }
  
  .stone-2900 {
    font-size: 1rem;
  }
  
  .clean_4514 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .medium-fa9a {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.module-5b2b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.warm-29d5 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.warm-29d5 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) {
  .east-9e3b {
    grid-template-columns: 1fr;
  }
  
  .notice_f6f0 {
    font-size: 1.75rem;
  }
  
  .text_1c35 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.bottom-f716 {
  flex-shrink: 0;
}

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

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

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

.pattern-546e,
.picture_a9ec,
.badge-fec5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pattern-546e thead,
.picture_a9ec thead {
  background: var(--color-primary);
  color: white;
}

.pattern-546e th,
.pattern-546e td,
.picture_a9ec th,
.picture_a9ec td,
.badge-fec5 th,
.badge-fec5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pattern-546e th,
  .pattern-546e td,
  .picture_a9ec th,
  .picture_a9ec td,
  .badge-fec5 th,
  .badge-fec5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pattern-546e,
  .picture_a9ec,
  .badge-fec5 {
    min-width: 600px;
  }
}

.pattern-546e th,
.picture_a9ec th,
.badge-fec5 th {
  font-weight: 600;
}

.pattern-546e tbody tr:hover,
.picture_a9ec tbody tr:hover,
.badge-fec5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.title-4264 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice_0545 {
  color: #4caf50;
}

.search-over-06f5 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.short_c203 .grid_ebba {
  width: 100%;
  background: white;
}

.nav_dim_fadf .grid_ebba {
  color: #667eea;
}

.focused_0340 .grid_ebba {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.background-prev-91c4 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.highlight-stale-117c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .full_95e1 {
    padding: var(--space-md);
  }
  
  .highlight-stale-117c {
    padding: var(--space-md);
  }
  
  .south-3e86 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.heading_top_6da4,
.narrow_493c,
.focused_8b4a,
.soft-037b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.secondary-next-3d0b:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.liquid-7db1 {
  border-color: var(--color-success);
}

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

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

.liquid-7db1 .grid_e686 {
  background: #e8f5e9;
  color: var(--color-success);
}

.icon_rough_306c .grid_e686 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-center-02a3 {
  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);
}

.menu-blue-11f3 {
  text-align: center;
}

.secondary-1d2c {
  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);
}

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

.secondary-1d2c .slider_yellow_8fd6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-white-fe3d {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.highlight-1599 {
  text-align: right;
}

.highlight-1599 .table-slow-9688 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.link-stale-061a {
  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);
}

.link-stale-061a:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.middle-3a9f strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.up-ec42[aria-expanded="true"] .green_feeb {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-13f4,
.photo_76c6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hard-13f4 h4,
.photo_76c6 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hard-13f4 ul,
.photo_76c6 ul {
  list-style: none;
  padding: 0;
}

.hard-13f4 li,
.photo_76c6 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-bronze-2b21 {
  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);
}

.message-bbbd {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.hidden-lite-48ed {
  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);
}

.hidden-lite-48ed:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.hidden-lite-48ed p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.icon_8696 .overlay-6726 {
  color: #4caf50;
  font-size: 0.875rem;
}

.main-out-3672 {
  list-style: none;
  padding: 0;
}

.main-out-3672 li {
  margin-bottom: var(--space-xs);
}

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

.main-out-3672 a:hover {
  color: white;
}

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

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

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

.gallery_easy_243a a:hover {
  color: white;
}

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

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

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

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

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

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

.chip-2fcf:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .focus_4f8d {
    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;
  }
  
  .new_649e {
    font-size: 2rem;
  }
  
  .notice_f6f0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .upper_46d0,
  .east-9e3b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .link_stone_bde8,
  .info_0873,
  .under-bd93,
  .menu-narrow-be05,
  .solid_36b6,
  .wrapper-68c1,
  .dropdown_smooth_7b94,
  .pro-d94f {
    grid-template-columns: 1fr;
  }
  
  .chip-a369 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .copper-504e {
    padding: var(--space-lg) 0;
  }
  
  .clean_00c8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .clean_00c8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .grid_ebba {
    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;
  }
  
  .chip-a369 {
    grid-template-columns: 1fr;
  }
  
  .center-cf71,
  .gradient_steel_913e,
  .search_7af6 {
    flex-direction: column;
    width: 100%;
  }
  
  .module-5b2b,
  .icon_smooth_5f99,
  .center-cf71 .grid_ebba,
  .gradient_steel_913e .grid_ebba {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .new_649e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notice_f6f0 {
    font-size: 1.375rem;
  }
  
  .dirty_250c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .section-8c63,
  .wrapper_8dfb,
  .black-be0f,
  .menu-silver-e725,
  .fresh-5abf {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .middle-4f5d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .breadcrumb-over-ef89 {
    gap: var(--space-xs);
  }
  
  .cold-789f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column_a229 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .secondary-1d2c {
    width: 150px;
    height: 150px;
  }
  
  .logo_copper_1874 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .widget_ef2f,
  .footer_bottom_fcc9,
  .center-cf71,
  .title_hard_f5fd,
  .hover_6e74,
  .banner_f2eb,
  .section-65b0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .copper-504e {
    page-break-inside: avoid;
  }
}

/* css-noise: 292b */
.phantom-card-d8 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
