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

.feature_left_a5fa:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.in-8435,
header,
.active_34ec,
.up_9804,
.liquid-d55c,
.under-d182,
.module-brown-ec0e,
.carousel-wood-b33e,
.alert-gold-5a01 {
  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
   ============================================ */
.in-8435 {
  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);
}

.active-33b7 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.in-8435.middle-2085 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.sort-focused-1a13 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.active-bace {
  flex: 1;
}

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

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

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

.sort_full_f416.fn-active-56c2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.narrow-37b0 {
  position: relative;
}

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

.south-7e17 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.fast-75da svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.info-red-0bc3[aria-expanded="true"] .wide-ea57:nth-child(2) {
  opacity: 0;
}

.info-red-0bc3[aria-expanded="true"] .wide-ea57:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .active-bace {
    display: none;
  }
  
  .info-red-0bc3 {
    display: flex;
  }
  
  .accent_silver_924e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fast-75da,
  .menu-fefe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .narrow-37b0 {
    position: relative;
  }
  
  .old_2422 {
    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;
  }
  
  .south-7e17[aria-expanded="true"] + .old_2422 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .badge-ebdc {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .orange-e0c5 {
    gap: 8px;
  }
  
  .fast-75da {
    display: none;
  }
  
  .menu-fefe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hot_dbeb img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.dark-f364 svg {
  flex-shrink: 0;
}

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

.dark-f364 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.breadcrumb-hard-a422 a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb-hard-a422 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.link-4ce5 {
  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;
}

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

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

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

.top-313a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.brown_f8c5 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .sidebar_black_fa33 {
    grid-template-columns: 1fr;
  }
  
  .column-stone-5500 {
    font-size: 1.75rem;
  }
  
  .clean_edff {
    order: -1;
    max-width: 100%;
  }
  
  .brown_f8c5 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column-stone-5500 {
    font-size: 1.5rem;
  }
  
  .text-first-f277 {
    font-size: 1rem;
  }
  
  .breadcrumb-hard-a422 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .brown_f8c5 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.accordion-1572 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.popup-short-16b8 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-ab4f 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;
}

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

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

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

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

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

.highlight-simple-204c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.solid-afbf 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) {
  .text_fast_d92a {
    grid-template-columns: 1fr;
  }
  
  .highlight-simple-204c {
    font-size: 1.75rem;
  }
  
  .main_green_7400 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .highlight-simple-204c {
    font-size: 1.5rem;
  }
  
  .main_green_7400 h3 {
    font-size: 1.375rem;
  }
  
  .main_green_7400 h4 {
    font-size: 1.125rem;
  }
}

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

.block-white-fd94 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.text-gas-a0a8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.list_cf89 {
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .label_54d1 {
    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-8ad6,
.main-short-f53c,
.north_a6f5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gradient-8ad6 thead,
.main-short-f53c thead {
  background: var(--color-primary);
  color: white;
}

.gradient-8ad6 th,
.gradient-8ad6 td,
.main-short-f53c th,
.main-short-f53c td,
.north_a6f5 th,
.north_a6f5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gradient-8ad6 th,
  .gradient-8ad6 td,
  .main-short-f53c th,
  .main-short-f53c td,
  .north_a6f5 th,
  .north_a6f5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gradient-8ad6,
  .main-short-f53c,
  .north_a6f5 {
    min-width: 600px;
  }
}

.gradient-8ad6 th,
.main-short-f53c th,
.north_a6f5 th {
  font-weight: 600;
}

.gradient-8ad6 tbody tr:hover,
.main-short-f53c tbody tr:hover,
.north_a6f5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.notification-f847 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny-7f51 {
  color: #4caf50;
}

.top-9a4d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east_ae30 .media_cf87 {
  width: 100%;
  background: white;
}

.primary-pressed-7ccf .media_cf87 {
  color: #667eea;
}

.card-copper-4a04 .media_cf87 {
  color: #f5576c;
}

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

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

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

.text-cold-7615 {
  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);
}

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

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

@media (max-width: 768px) {
  .hover-e34b {
    padding: var(--space-md);
  }
  
  .lite-ce30 {
    padding: var(--space-md);
  }
  
  .article-bottom-c263 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.pagination-18b6 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.tall_067d,
.prev-be27,
.fixed_8b58,
.outline_motion_1ee2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.image-6fde {
  border-color: var(--color-success);
}

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

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

.image-6fde .title_green_8630 {
  background: #e8f5e9;
  color: var(--color-success);
}

.layout-d5f9 .title_green_8630 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video-hard-b6e2 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-over-39c7 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.glass-400c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.focus-add6 {
  text-align: right;
}

.focus-add6 .east-60af {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.footer-d4e5 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

.form-down-6390 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.status_bright_84ae h4,
.carousel_smooth_1382 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.status_bright_84ae ul,
.carousel_smooth_1382 ul {
  list-style: none;
  padding: 0;
}

.status_bright_84ae li,
.carousel_smooth_1382 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.left_2b4a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list_lower_1f6f .overlay-easy-fab7 {
  color: #4caf50;
  font-size: 0.875rem;
}

.aside-white-f25c {
  list-style: none;
  padding: 0;
}

.aside-white-f25c li {
  margin-bottom: var(--space-xs);
}

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

.aside-white-f25c a:hover {
  color: white;
}

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

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

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

.grid_stale_fc3e a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .blue-fb3b {
    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;
  }
  
  .column-stone-5500 {
    font-size: 2rem;
  }
  
  .highlight-simple-204c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .sidebar_black_fa33,
  .text_fast_d92a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .input-smooth-7003,
  .fresh_0653,
  .logo-hovered-7649,
  .panel_b1ba,
  .up-5655,
  .clean_341e,
  .progress-middle-3191,
  .bright-c2b6 {
    grid-template-columns: 1fr;
  }
  
  .stale-427f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .module-brown-ec0e {
    padding: var(--space-lg) 0;
  }
  
  .icon-ab4f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .icon-ab4f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .media_cf87 {
    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;
  }
  
  .stale-427f {
    grid-template-columns: 1fr;
  }
  
  .top-313a,
  .paragraph-9a5b,
  .simple_3e28 {
    flex-direction: column;
    width: 100%;
  }
  
  .accordion-1572,
  .popup-short-16b8,
  .top-313a .media_cf87,
  .paragraph-9a5b .media_cf87 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column-stone-5500 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .highlight-simple-204c {
    font-size: 1.375rem;
  }
  
  .last-8a08 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .menu-7873,
  .content_simple_c5db,
  .picture_active_f4fd,
  .modal_bc46,
  .tall-7c92 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider_dark_3c09 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .slow_556e {
    gap: var(--space-xs);
  }
  
  .dark-f364 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .purple_b4a3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .overlay_e860 {
    width: 150px;
    height: 150px;
  }
  
  .short-0118 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .in-8435,
  .active_34ec,
  .top-313a,
  .accent-6896,
  .carousel-wood-b33e,
  .alert-gold-5a01,
  .info-red-0bc3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .module-brown-ec0e {
    page-break-inside: avoid;
  }
}

/* css-noise: a970 */
.shadow-element-w4 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
