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

.gallery-1545:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tabs-e55b,
header,
.solid_ec14,
.hard_faec,
.input_fast_03db,
.link_wide_c8a0,
.under-fc54,
.hero_5baf,
.overlay_center_4465 {
  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
   ============================================ */
.tabs-e55b {
  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);
}

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

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

/* Scrolled state */
.tabs-e55b.tiny_f9b4 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.image-a837 img {
  height: 36px;
  width: auto;
  display: block;
}

.soft-3e31 {
  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;
}

.thumbnail_silver_15a6 {
  flex: 1;
}

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

.pagination-last-eb12 {
  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);
}

.pagination-last-eb12:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.pagination-last-eb12.fn-active-ea76 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cold-6e06 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .thumbnail_silver_15a6::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .thumbnail_silver_15a6.widget_mini_915d {
    display: block;
    right: 0;
  }
  
  .status-22de {
    flex-direction: column;
    gap: 0;
  }
  
  .pagination-last-eb12 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .thumbnail_silver_15a6::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;
  }
  
  .thumbnail_silver_15a6.widget_mini_915d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .thumbnail_silver_15a6 {
    display: none;
  }
  
  .north_8237 {
    display: flex;
  }
  
  .soft-3e31 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .cold-6e06,
  .nav-e921 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .table_a9dd {
    position: relative;
  }
  
  .carousel-9099 {
    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;
  }
  
  .chip_a5ce[aria-expanded="true"] + .carousel-9099 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .south_3048 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .caption_east_5c1d {
    gap: 8px;
  }
  
  .cold-6e06 {
    display: none;
  }
  
  .nav-e921 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .image-a837 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.glass-7854 svg {
  flex-shrink: 0;
}

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

.glass-7854 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-fast-d453 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .link_current_1faa {
    grid-template-columns: 1fr;
  }
  
  .avatar-184c {
    font-size: 1.75rem;
  }
  
  .box-fast-d453 {
    order: -1;
    max-width: 100%;
  }
  
  .middle_3b93 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .avatar-184c {
    font-size: 1.5rem;
  }
  
  .summary_1213 {
    font-size: 1rem;
  }
  
  .aside_pink_709a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .middle_3b93 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.widget-d750 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.icon-9f41 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.breadcrumb-stone-b04a {
  list-style: none;
  counter-reset: toc-counter;
}

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

.breadcrumb-stone-b04a 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);
}

.breadcrumb-stone-b04a 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focused_1206 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) {
  .south_249d {
    grid-template-columns: 1fr;
  }
  
  .gradient-f0a2 {
    font-size: 1.75rem;
  }
  
  .old_068b {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.smooth_2bcf {
  flex-shrink: 0;
}

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

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

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

.warm_6ac7,
.link_6942,
.tabs-6c46 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.warm_6ac7 thead,
.link_6942 thead {
  background: var(--color-primary);
  color: white;
}

.warm_6ac7 th,
.warm_6ac7 td,
.link_6942 th,
.link_6942 td,
.tabs-6c46 th,
.tabs-6c46 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .warm_6ac7 th,
  .warm_6ac7 td,
  .link_6942 th,
  .link_6942 td,
  .tabs-6c46 th,
  .tabs-6c46 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .warm_6ac7,
  .link_6942,
  .tabs-6c46 {
    min-width: 600px;
  }
}

.warm_6ac7 th,
.link_6942 th,
.tabs-6c46 th {
  font-weight: 600;
}

.warm_6ac7 tbody tr:hover,
.link_6942 tbody tr:hover,
.tabs-6c46 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.modal-77ae h4 {
  color: white;
}

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

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

.thumbnail-842e:last-child {
  border-bottom: none;
}

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

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

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

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

.link-f525:hover {
  text-decoration: underline;
}

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

.row-4cef {
  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);
}

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

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

.search-2f6c {
  list-style: none;
  padding: 0;
}

.search-2f6c li {
  padding: var(--space-xs) 0;
}

.row_warm_79cc {
  color: #4caf50;
}

.filter-ff0e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.light-f5f1 .overlay-cedb {
  width: 100%;
  background: white;
}

.background-55b6 .overlay-cedb {
  color: #667eea;
}

.description_c427 .overlay-cedb {
  color: #f5576c;
}

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

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

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

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

.texture-clean-c8d3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.badge-short-3d1f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .texture-clean-c8d3 {
    padding: var(--space-md);
  }
  
  .badge-short-3d1f {
    padding: var(--space-md);
  }
  
  .yellow_be48 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.banner_e296,
.middle-1a4e,
.pink_3ca8,
.slider_west_0ef1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.element-85b8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.dropdown-wide-3824 {
  border-color: var(--color-warning);
}

.component-simple-e1d2 {
  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);
}

.row_5d0f .component-simple-e1d2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.dropdown-wide-3824 .component-simple-e1d2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-9b39 {
  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);
}

.focused_38fe {
  text-align: center;
}

.south_af81 {
  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_dfb6 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top-f3c5 {
  border: 2px solid #4caf50;
}

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

.outline-930e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.text-wood-69a0 {
  text-align: right;
}

.text-wood-69a0 .out-3d44 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.tooltip-92a9 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.preview-4511 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.widget-hard-d981 strong {
  color: var(--color-primary);
}

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.outline-blue-891c {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-aff2,
.status_cool_1f35 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.info-aff2 h4,
.status_cool_1f35 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.info-aff2 ul,
.status_cool_1f35 ul {
  list-style: none;
  padding: 0;
}

.info-aff2 li,
.status_cool_1f35 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.south-e0fe {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.header-1c05 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.lite-8e04 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lite-8e04 li {
  margin-bottom: var(--space-xs);
}

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

.lite-8e04 a:hover {
  color: white;
}

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

.menu_white_f3f4 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

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

.fast-6e78 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.fast-6e78 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .mask-6238,
  .header-1c05 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.aside_wood_adce .inner_1bbc {
  color: #4caf50;
  font-size: 0.875rem;
}

.disabled-88c1 {
  list-style: none;
  padding: 0;
}

.disabled-88c1 li {
  margin-bottom: var(--space-xs);
}

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

.disabled-88c1 a:hover {
  color: white;
}

.heading-b88b {
  list-style: none;
  padding: 0;
}

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

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

.heading-b88b a:hover {
  color: white;
}

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

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

.liquid-728f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.photo-2e29 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.photo-2e29 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .carousel-4264 {
    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;
  }
  
  .avatar-184c {
    font-size: 2rem;
  }
  
  .gradient-f0a2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .link_current_1faa,
  .south_249d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .button-top-fecd,
  .info-last-c8f5,
  .wrapper-3a73,
  .fluid_3fc8,
  .logo_hard_ee76,
  .overlay_action_c66f,
  .main_769a,
  .mask-6238,
  .header-1c05 {
    grid-template-columns: 1fr;
  }
  
  .stale_5d84 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .under-fc54 {
    padding: var(--space-lg) 0;
  }
  
  .breadcrumb-stone-b04a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .breadcrumb-stone-b04a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .overlay-cedb {
    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_5d84 {
    grid-template-columns: 1fr;
  }
  
  .picture-2585,
  .fixed-8fd5,
  .out_7ab9 {
    flex-direction: column;
    width: 100%;
  }
  
  .widget-d750,
  .icon-9f41,
  .picture-2585 .overlay-cedb,
  .fixed-8fd5 .overlay-cedb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .avatar-184c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gradient-f0a2 {
    font-size: 1.375rem;
  }
  
  .popup-f5b2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .in_2f39,
  .aside-b917,
  .content_complex_0596,
  .alert-2f05,
  .heading_ac1a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .layout-outer-e7c1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .component-c8e8 {
    gap: var(--space-xs);
  }
  
  .glass-7854 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .row-4cef {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .south_af81 {
    width: 150px;
    height: 150px;
  }
  
  .notice_dfb6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tabs-e55b,
  .solid_ec14,
  .picture-2585,
  .layout_easy_3bcc,
  .hero_5baf,
  .overlay_center_4465,
  .north_8237 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .under-fc54 {
    page-break-inside: avoid;
  }
}

/* css-noise: 5d73 */
.widget-item-v9 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
