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

.panel_0459:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.card-down-d917):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. */
.card-down-d917,
header,
.inner-b407,
.cool-1aa7,
.hero-short-c76b,
.chip_c0d3,
.iron-1682,
.modal_action_ccea,
.notice-c18c {
  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
   ============================================ */
.card-down-d917 {
  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);
}

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

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

/* Scrolled state */
.card-down-d917.nav-over-f179 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.preview_98a8 {
  flex: 1;
}

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

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

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

.hot-e0b9.full_40f5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.nav-7b7c {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-south-a611 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tag-next-19e6[aria-expanded="true"] .soft_55c2:nth-child(2) {
  opacity: 0;
}

.tag-next-19e6[aria-expanded="true"] .soft_55c2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .preview_98a8 {
    display: none;
  }
  
  .tag-next-19e6 {
    display: flex;
  }
  
  .grid_pro_70f3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .breadcrumb-south-a611,
  .right_e86e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav-7b7c {
    position: relative;
  }
  
  .liquid_d53c {
    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;
  }
  
  .backdrop_paper_73d1[aria-expanded="true"] + .liquid_d53c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .red_10f6 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .orange_4d63 {
    gap: 8px;
  }
  
  .breadcrumb-south-a611 {
    display: none;
  }
  
  .right_e86e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .chip_5628 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.title_e7c8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.dropdown-dd47 a:hover {
  text-decoration: underline;
}

.thick-8f54 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.label-center-91b6 {
  display: flex;
  gap: var(--space-sm);
}

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

.large-092d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.large-092d strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.layout-80fb {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hovered_7a1e {
    grid-template-columns: 1fr;
  }
  
  .menu-tiny-c111 {
    font-size: 1.75rem;
  }
  
  .hero_green_b050 {
    order: -1;
    max-width: 100%;
  }
  
  .layout-80fb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .menu-tiny-c111 {
    font-size: 1.5rem;
  }
  
  .search_pink_ede8 {
    font-size: 1rem;
  }
  
  .dropdown-dd47 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .layout-80fb {
    max-width: 250px;
  }
}

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

.footer-tall-4f55 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.alert-huge-e6c1 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-efa8 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice_plasma_19b5 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) {
  .logo_3ad2 {
    grid-template-columns: 1fr;
  }
  
  .last_b6d2 {
    font-size: 1.75rem;
  }
  
  .video_paper_4d03 {
    max-width: 100%;
  }
}

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

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

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

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

.frame-slow-a0e8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.accent-e55f {
  flex-shrink: 0;
}

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

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

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

.old-2a9d,
.container_1627,
.element-down-abe6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.old-2a9d thead,
.container_1627 thead {
  background: var(--color-primary);
  color: white;
}

.old-2a9d th,
.old-2a9d td,
.container_1627 th,
.container_1627 td,
.element-down-abe6 th,
.element-down-abe6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .old-2a9d th,
  .old-2a9d td,
  .container_1627 th,
  .container_1627 td,
  .element-down-abe6 th,
  .element-down-abe6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .old-2a9d,
  .container_1627,
  .element-down-abe6 {
    min-width: 600px;
  }
}

.old-2a9d th,
.container_1627 th,
.element-down-abe6 th {
  font-weight: 600;
}

.old-2a9d tbody tr:hover,
.container_1627 tbody tr:hover,
.element-down-abe6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.label_large_a2bd h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.gold-d445 {
  font-weight: 600;
  color: white;
}

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

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

.chip-7381 {
  color: #4caf50;
}

.advanced-5a83 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-under-1278 {
  margin-top: var(--space-xxl);
}

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

.accordion_d835 {
  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_d835 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.filter_9fcb .large_6bb3 {
  width: 100%;
  background: white;
}

.detail-down-53ee .large_6bb3 {
  color: #667eea;
}

.full_de54 .large_6bb3 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .new_a1cc {
    padding: var(--space-md);
  }
  
  .thumbnail_dd4e {
    padding: var(--space-md);
  }
  
  .shadow-4964 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.form_in_2c76,
.detail-glass-2218,
.stale-4977,
.feature-7132 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-plasma-737f {
  border-color: var(--color-warning);
}

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

.secondary-d31c .search_left_2d6f {
  background: #e8f5e9;
  color: var(--color-success);
}

.hidden-plasma-737f .search_left_2d6f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer_abdd {
  text-align: center;
}

.down-8de1 {
  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);
}

.hover-pink-66d6 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.down-8de1 .gold-d445 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.slider-down-046c {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module_7dfa {
  text-align: right;
}

.module_7dfa .text_rough_22ea {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.tag-smooth-9ea0 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hidden-tiny-7fac {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.glass-96b4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown-79fd,
.sort-center-e793 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.brown-79fd h4,
.sort-center-e793 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.brown-79fd ul,
.sort-center-e793 ul {
  list-style: none;
  padding: 0;
}

.brown-79fd li,
.sort-center-e793 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.notification-5a40 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.gradient-advanced-a698 {
  font-style: italic;
}

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

.layout-selected-5860 {
  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-selected-5860 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

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

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

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

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

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

@media (max-width: 768px) {
  .item-focused-424a {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.yellow-9795 .label-center-91b6 {
  color: #4caf50;
  font-size: 0.875rem;
}

.carousel-gas-5a52 {
  list-style: none;
  padding: 0;
}

.carousel-gas-5a52 li {
  margin-bottom: var(--space-xs);
}

.carousel-gas-5a52 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.carousel-gas-5a52 a:hover {
  color: white;
}

.tag-bed0 {
  list-style: none;
  padding: 0;
}

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

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

.tag-bed0 a:hover {
  color: white;
}

.notice-west-9b10 {
  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);
}

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

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

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

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

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

.advanced-e229:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .notice-west-9b10 {
    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;
  }
  
  .menu-tiny-c111 {
    font-size: 2rem;
  }
  
  .last_b6d2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hovered_7a1e,
  .logo_3ad2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .banner_8aa2,
  .panel_cfa1,
  .accordion_d835,
  .cool-fa26,
  .chip-narrow-5a52,
  .banner-ce32,
  .item-focused-424a,
  .primary-plasma-bbb8 {
    grid-template-columns: 1fr;
  }
  
  .top-d82f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .iron-1682 {
    padding: var(--space-lg) 0;
  }
  
  .module-efa8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .module-efa8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .large_6bb3 {
    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;
  }
  
  .top-d82f {
    grid-template-columns: 1fr;
  }
  
  .motion_32d4,
  .caption_simple_fd3a,
  .hovered_1c08 {
    flex-direction: column;
    width: 100%;
  }
  
  .alert-huge-e6c1,
  .badge_steel_0f5b,
  .motion_32d4 .large_6bb3,
  .caption_simple_fd3a .large_6bb3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .menu-tiny-c111 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .last_b6d2 {
    font-size: 1.375rem;
  }
  
  .article_stone_42a8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .nav_3e1a,
  .breadcrumb-b22a,
  .breadcrumb_fluid_4621,
  .grid-stale-3741,
  .north_a877 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .panel-7e5a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .item_fresh_e482 {
    gap: var(--space-xs);
  }
  
  .title_e7c8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .center-d96d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .down-8de1 {
    width: 150px;
    height: 150px;
  }
  
  .hover-pink-66d6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .card-down-d917,
  .inner-b407,
  .motion_32d4,
  .layout-selected-5860,
  .modal_action_ccea,
  .notice-c18c,
  .tag-next-19e6 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .iron-1682 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 0297 */
.ghost-box-x8 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
