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

.item_glass_ec9a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.status-7317,
header,
.pagination_clean_a74d,
.widget_outer_32f7,
.inner-605c,
.title_wide_0bc0,
.red-0d0d,
.prev-c942,
.steel_f496 {
  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
   ============================================ */
.status-7317 {
  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);
}

.soft-12e8 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.status-7317.paragraph-2339 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.carousel-gas-44aa {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.stone_1bc8 {
  flex: 1;
}

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

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

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

.form_15c3.fn-active-b036 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.background-2245 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture_11e0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hover-lite-0440[aria-expanded="true"] .menu_small_2192:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .stone_1bc8 {
    display: none;
  }
  
  .hover-lite-0440 {
    display: flex;
  }
  
  .summary_045b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .texture_11e0,
  .glass_3d60 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .background-2245 {
    position: relative;
  }
  
  .caption-3754 {
    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;
  }
  
  .highlight_09ef[aria-expanded="true"] + .caption-3754 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .blue-8767 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .filter-cc15 {
    gap: 8px;
  }
  
  .texture_11e0 {
    display: none;
  }
  
  .glass_3d60 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .shade_cool_e68c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.overlay_fc66 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-4aa4 {
  display: flex;
  gap: var(--space-sm);
}

.description-down-9227 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .breadcrumb-c865 {
    grid-template-columns: 1fr;
  }
  
  .easy_8d30 {
    font-size: 1.75rem;
  }
  
  .article_6dee {
    order: -1;
    max-width: 100%;
  }
  
  .new_ae4a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .easy_8d30 {
    font-size: 1.5rem;
  }
  
  .tiny-693c {
    font-size: 1rem;
  }
  
  .list_large_6a78 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .new_ae4a {
    max-width: 250px;
  }
}

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

.hard-581d {
  background: var(--color-primary);
  color: white;
}

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

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

.description-basic-0080:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.gallery-4fa0 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-small-d1a7 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.button-small-d1a7 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) {
  .video-5c3b {
    grid-template-columns: 1fr;
  }
  
  .dynamic-b8f5 {
    font-size: 1.75rem;
  }
  
  .west_cbc7 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.paragraph-gas-b49d {
  flex-shrink: 0;
}

.hero-yellow-7e68 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.section-a6fd,
.highlight-center-8c64,
.article_medium_76ed {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.section-a6fd thead,
.highlight-center-8c64 thead {
  background: var(--color-primary);
  color: white;
}

.section-a6fd th,
.section-a6fd td,
.highlight-center-8c64 th,
.highlight-center-8c64 td,
.article_medium_76ed th,
.article_medium_76ed td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-a6fd th,
  .section-a6fd td,
  .highlight-center-8c64 th,
  .highlight-center-8c64 td,
  .article_medium_76ed th,
  .article_medium_76ed td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .section-a6fd,
  .highlight-center-8c64,
  .article_medium_76ed {
    min-width: 600px;
  }
}

.section-a6fd th,
.highlight-center-8c64 th,
.article_medium_76ed th {
  font-weight: 600;
}

.section-a6fd tbody tr:hover,
.highlight-center-8c64 tbody tr:hover,
.article_medium_76ed tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.banner-south-7724 h4 {
  color: white;
}

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

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

.mask-2b0a:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.main-75f0 {
  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);
}

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

.narrow-b687 {
  font-weight: 600;
  color: white;
}

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

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

.purple-e5d2 {
  color: #4caf50;
}

.notice-center-755a {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .breadcrumb-lite-8cf5 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east_dc89 .main_4f59 {
  width: 100%;
  background: white;
}

.disabled-middle-424e .main_4f59 {
  color: #667eea;
}

.disabled-middle-29f8 .main_4f59 {
  color: #f5576c;
}

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

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

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

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

.paragraph-green-5fe2 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.first-60c5 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .paragraph-green-5fe2 {
    padding: var(--space-md);
  }
  
  .first-60c5 {
    padding: var(--space-md);
  }
  
  .component_small_6779 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.hidden-82a8 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.soft_8d13,
.overlay_c0a3,
.mask-d9f0,
.thumbnail-6e44 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.carousel-58a9:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.grid-upper-b412 {
  border-color: var(--color-success);
}

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

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

.grid-upper-b412 .primary_ef4a {
  background: #e8f5e9;
  color: var(--color-success);
}

.red_2e27 .primary_ef4a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.block-dark-a469 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.photo_8a46 {
  text-align: center;
}

.bronze-817a {
  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);
}

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

.bronze-817a .narrow-b687 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.warm-39b6 p {
  margin-bottom: var(--space-md);
}

.accent-bronze-0fe2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.tertiary-329f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.black-0dad {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.last_f807 {
  text-align: right;
}

.last_f807 .nav-stone-7511 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.mini-992a {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.alert-simple-5a97 strong {
  color: var(--color-primary);
}

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

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

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

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

.inner_7140 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.card-huge-7aa2 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.inner_7140[aria-expanded="true"] .card-huge-7aa2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-aea8,
.section_outer_4b95 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.filter-aea8 h4,
.section_outer_4b95 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.filter-aea8 ul,
.section_outer_4b95 ul {
  list-style: none;
  padding: 0;
}

.filter-aea8 li,
.section_outer_4b95 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.video-south-e95f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.north-8b41 {
  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);
}

.caption-up-27e3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.highlight-solid-63a7 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.medium_fc18 .box-4aa4 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.row_purple_6412 a:hover {
  color: white;
}

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

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

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

.chip_copper_53e3 a:hover {
  color: white;
}

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

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

.red-0d4e a {
  color: #4caf50;
  text-decoration: none;
}

.video-hot-98c8 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .bronze-4888 {
    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;
  }
  
  .easy_8d30 {
    font-size: 2rem;
  }
  
  .dynamic-b8f5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .breadcrumb-c865,
  .video-5c3b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .breadcrumb-lite-8cf5,
  .disabled-brown-0114,
  .widget-red-6bb9,
  .texture-5204,
  .copper-1184,
  .gallery-dc55,
  .tooltip_4317,
  .slow_9848 {
    grid-template-columns: 1fr;
  }
  
  .media-3ff5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .red-0d0d {
    padding: var(--space-lg) 0;
  }
  
  .nav_5683 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .nav_5683 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .main_4f59 {
    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;
  }
  
  .media-3ff5 {
    grid-template-columns: 1fr;
  }
  
  .black_00fe,
  .right-f4c1,
  .gradient_red_58bc {
    flex-direction: column;
    width: 100%;
  }
  
  .gallery-4fa0,
  .highlight_paper_c7fd,
  .black_00fe .main_4f59,
  .right-f4c1 .main_4f59 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .easy_8d30 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dynamic-b8f5 {
    font-size: 1.375rem;
  }
  
  .gold_b7c4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .cool_d311,
  .banner_last_0352,
  .video_old_2eea,
  .sort-8ac6,
  .input-fast-b1c2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .input-tall-b3c9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wrapper_old_3d98 {
    gap: var(--space-xs);
  }
  
  .overlay_fc66 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .main-75f0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .bronze-817a {
    width: 150px;
    height: 150px;
  }
  
  .notice-left-e710 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .status-7317,
  .pagination_clean_a74d,
  .black_00fe,
  .footer_pro_6e7f,
  .prev-c942,
  .steel_f496,
  .hover-lite-0440 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .red-0d0d {
    page-break-inside: avoid;
  }
}

/* css-noise: 786a */
.shadow-element-m8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
