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

.shadow_6248:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.yellow-037d,
header,
.thumbnail_8680,
.thick_429b,
.feature-black-3630,
.active-0376,
.shadow-advanced-1b21,
.notice_55cd,
.image-5fc7 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

/* Scrolled state */
.yellow-037d.form_350d {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.short-b6c0 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.progress-slow-94aa {
  flex: 1;
}

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

.popup-white-0ec2 {
  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);
}

.popup-white-0ec2:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.popup-white-0ec2.easy_7262 {
  background: var(--color-primary);
  color: white;
}

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

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

.title-basic-50b6 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.bright-a6c0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .progress-slow-94aa::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .progress-slow-94aa.image_d360 {
    display: block;
    right: 0;
  }
  
  .gallery-4157 {
    flex-direction: column;
    gap: 0;
  }
  
  .popup-white-0ec2 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .progress-slow-94aa::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;
  }
  
  .progress-slow-94aa.image_d360::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .progress-slow-94aa {
    display: none;
  }
  
  .footer_3dfb {
    display: flex;
  }
  
  .thumbnail_new_1eb9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .bright-a6c0,
  .item_dirty_d3a8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .short_35eb {
    position: relative;
  }
  
  .backdrop-a0d9 {
    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;
  }
  
  .title-basic-50b6[aria-expanded="true"] + .backdrop-a0d9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .nav_yellow_1a67 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hot_1e20 {
    gap: 8px;
  }
  
  .bright-a6c0 {
    display: none;
  }
  
  .item_dirty_d3a8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .short-b6c0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.item-simple-75e3 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-simple-75e3 svg {
  flex-shrink: 0;
}

.item-simple-75e3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.item-simple-75e3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .banner-pressed-31e3 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.info-36cb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.highlight-basic-6abc {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .focus-static-362f {
    grid-template-columns: 1fr;
  }
  
  .simple-38b8 {
    font-size: 1.75rem;
  }
  
  .highlight-basic-6abc {
    order: -1;
    max-width: 100%;
  }
  
  .carousel_current_ec39 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .simple-38b8 {
    font-size: 1.5rem;
  }
  
  .popup-87f2 {
    font-size: 1rem;
  }
  
  .aside_aaed {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .carousel_current_ec39 {
    max-width: 250px;
  }
}

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

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

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

.photo-new-9b3c {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.photo-new-9b3c:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.first-1b29 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-bb48 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.shadow-advanced-1b21 {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress-5f0f {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.progress-5f0f 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) {
  .surface_6cb8 {
    grid-template-columns: 1fr;
  }
  
  .dirty_8196 {
    font-size: 1.75rem;
  }
  
  .secondary-e7ef {
    max-width: 100%;
  }
}

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

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

.summary-58ef {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.row_6b72 {
  flex-shrink: 0;
}

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

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

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

.hovered_6b18,
.heading_78d4,
.wrapper-stale-3b61 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hovered_6b18 thead,
.heading_78d4 thead {
  background: var(--color-primary);
  color: white;
}

.hovered_6b18 th,
.hovered_6b18 td,
.heading_78d4 th,
.heading_78d4 td,
.wrapper-stale-3b61 th,
.wrapper-stale-3b61 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hovered_6b18 th,
  .hovered_6b18 td,
  .heading_78d4 th,
  .heading_78d4 td,
  .wrapper-stale-3b61 th,
  .wrapper-stale-3b61 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hovered_6b18,
  .heading_78d4,
  .wrapper-stale-3b61 {
    min-width: 600px;
  }
}

.hovered_6b18 th,
.heading_78d4 th,
.wrapper-stale-3b61 th {
  font-weight: 600;
}

.hovered_6b18 tbody tr:hover,
.heading_78d4 tbody tr:hover,
.wrapper-stale-3b61 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.simple_9e49 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.fresh-d25a {
  font-weight: 600;
  color: white;
}

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

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

.box_simple_82f3 {
  color: #4caf50;
}

.block-smooth-9663 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.chip-fluid-1156 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary_9458 .sidebar-2535 {
  width: 100%;
  background: white;
}

.slider_5b38 .sidebar-2535 {
  color: #667eea;
}

.paragraph_static_3c42 .sidebar-2535 {
  color: #f5576c;
}

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

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

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

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

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

.thumbnail-current-12e2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .smooth-9531 {
    padding: var(--space-md);
  }
  
  .thumbnail-current-12e2 {
    padding: var(--space-md);
  }
  
  .iron_c9f4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.breadcrumb-basic-ce8f li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.center_ff45,
.east_2d4e,
.input-plasma-b12d,
.border-37b3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.glass-395d:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.overlay_static_ed63 .dropdown_steel_9ea2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.panel-c383 .dropdown_steel_9ea2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-8c4b {
  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);
}

.heading_hard_31b5 {
  text-align: center;
}

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

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

.hidden-a552 .fresh-d25a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.media-gold-a297 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.slider-14d4 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.picture-bb3e {
  text-align: right;
}

.picture-bb3e .over_14eb {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-action-6d08 {
  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);
}

.gradient-action-6d08:hover {
  background: var(--color-bg-alt);
}

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

.gradient-action-6d08[aria-expanded="true"] .up_acb0 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-9f1e,
.warm-66ab {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.input-9f1e h4,
.warm-66ab h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.input-9f1e ul,
.warm-66ab ul {
  list-style: none;
  padding: 0;
}

.input-9f1e li,
.warm-66ab li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.tiny-53e2 {
  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);
}

.orange_2147 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top-a674 .chip-b518 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.sort_bb09 a:hover {
  color: white;
}

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

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

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

.last_6462 a:hover {
  color: white;
}

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

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

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

.hover-pink-ff53 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.pagination-right-a7c1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header_748b {
    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;
  }
  
  .simple-38b8 {
    font-size: 2rem;
  }
  
  .dirty_8196 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .focus-static-362f,
  .surface_6cb8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .advanced-3cff,
  .smooth-f2fb,
  .accordion_48d5,
  .aside-first-1785,
  .secondary-9979,
  .pagination_orange_77e2,
  .tall-39cc,
  .feature-west-d1b9 {
    grid-template-columns: 1fr;
  }
  
  .shade_e63f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .shadow-advanced-1b21 {
    padding: var(--space-lg) 0;
  }
  
  .avatar-bb48 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .avatar-bb48 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .sidebar-2535 {
    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;
  }
  
  .shade_e63f {
    grid-template-columns: 1fr;
  }
  
  .info-36cb,
  .preview-b3b7,
  .lower_a7a7 {
    flex-direction: column;
    width: 100%;
  }
  
  .first-1b29,
  .hovered_6c28,
  .info-36cb .sidebar-2535,
  .preview-b3b7 .sidebar-2535 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .simple-38b8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dirty_8196 {
    font-size: 1.375rem;
  }
  
  .tooltip-0889 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .under_89db,
  .summary_prev_f8bc,
  .blue_d632,
  .outer-cade,
  .tooltip_selected_6623 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .selected-fb75 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .middle_4395 {
    gap: var(--space-xs);
  }
  
  .item-simple-75e3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .video_5ac4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hidden-a552 {
    width: 150px;
    height: 150px;
  }
  
  .avatar_c96e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .yellow-037d,
  .thumbnail_8680,
  .info-36cb,
  .surface_d5b0,
  .notice_55cd,
  .image-5fc7,
  .footer_3dfb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .shadow-advanced-1b21 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.footer_8d41 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 65ca */
.widget-item-d4 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
