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

.text_bbf6:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.tall_46a5):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. */
.tall_46a5,
header,
.hidden-south-787a,
.tiny-e946,
.progress_red_eb4f,
.notification-steel-4f31,
.label-simple-b52b,
.detail_slow_8aea,
.tooltip_fresh_d401 {
  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
   ============================================ */
.tall_46a5 {
  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);
}

.box-solid-b089 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

.message-medium-8ead {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mini-a5ce img {
  height: 36px;
  width: auto;
  display: block;
}

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

.accent_4e18 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.hero-slow-d6bc {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.stale-b6cb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hero-orange-cc6b[aria-expanded="true"] .link_1d0f:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .accent_4e18 {
    display: none;
  }
  
  .hero-orange-cc6b {
    display: flex;
  }
  
  .aside_green_78c3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .stale-b6cb,
  .widget_clean_dd5b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hero-slow-d6bc {
    position: relative;
  }
  
  .wood_bfc5 {
    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;
  }
  
  .form_huge_6a1e[aria-expanded="true"] + .wood_bfc5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hard_a204 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery_motion_1a72 {
    gap: 8px;
  }
  
  .stale-b6cb {
    display: none;
  }
  
  .widget_clean_dd5b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .mini-a5ce img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.black_6e25 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.block-97ce {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.blue-70fa {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.tabs-left-1502 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-0b04 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

.detail-warm-95f1 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .list_thick_8470 {
    grid-template-columns: 1fr;
  }
  
  .image-a4f0 {
    font-size: 1.75rem;
  }
  
  .footer-0b04 {
    order: -1;
    max-width: 100%;
  }
  
  .selected_73be {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .image-a4f0 {
    font-size: 1.5rem;
  }
  
  .fast_1e60 {
    font-size: 1rem;
  }
  
  .notice_fluid_1393 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .selected_73be {
    max-width: 250px;
  }
}

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

.short-353c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.form-first-8ccf {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.card-middle-3ac0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.label-simple-b52b {
  padding: var(--space-xxl) 0;
}

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

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

.preview-529f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar_in_f35b 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) {
  .full_dde8 {
    grid-template-columns: 1fr;
  }
  
  .out_ba2f {
    font-size: 1.75rem;
  }
  
  .last_2ede {
    max-width: 100%;
  }
}

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

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

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

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

.left-2d26 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.pro_410f {
  flex-shrink: 0;
}

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

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

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

.under-f363,
.lower-da01,
.east-04ff {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.under-f363 thead,
.lower-da01 thead {
  background: var(--color-primary);
  color: white;
}

.under-f363 th,
.under-f363 td,
.lower-da01 th,
.lower-da01 td,
.east-04ff th,
.east-04ff td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .under-f363 th,
  .under-f363 td,
  .lower-da01 th,
  .lower-da01 td,
  .east-04ff th,
  .east-04ff td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .under-f363,
  .lower-da01,
  .east-04ff {
    min-width: 600px;
  }
}

.under-f363 th,
.lower-da01 th,
.east-04ff th {
  font-weight: 600;
}

.under-f363 tbody tr:hover,
.lower-da01 tbody tr:hover,
.east-04ff tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.cool_0b92 h4 {
  color: white;
}

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

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

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

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

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

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

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

.grid-liquid-9678:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.carousel-d6b6 {
  color: #4caf50;
}

.widget-7605 {
  color: #ff9800;
}

.message-in-5a34 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.row-bronze-ad77 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .content-dark-512a {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.hot-c229 .button_under_491e {
  width: 100%;
  background: white;
}

.rough-f908 .button_under_491e {
  color: #667eea;
}

.block_slow_aa14 .button_under_491e {
  color: #f5576c;
}

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

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

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

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

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

.south-747c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .down_3306 {
    padding: var(--space-md);
  }
  
  .south-747c {
    padding: var(--space-md);
  }
  
  .layout-4f66 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.gallery-6b87 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.panel_dynamic_bbe9,
.text-soft-5597,
.hover-lite-8005,
.item_slow_749b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.list-4bc5:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.accordion-tiny-0375 {
  border-color: var(--color-warning);
}

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

.block_5ba6 .black_d409 {
  background: #e8f5e9;
  color: var(--color-success);
}

.accordion-tiny-0375 .black_d409 {
  background: #fff3e0;
  color: var(--color-warning);
}

.preview-soft-7e02 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.preview-soft-7e02 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.disabled_basic_6f99 {
  text-align: center;
}

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

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

.new-f911 .action_7b14 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.nav-cool-0da5 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.message-narrow-0879 {
  color: var(--color-text-light);
}

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

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

.component-fluid-ca9b {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.pagination_1771 {
  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_south_94bd {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.photo-hard-0ee1 {
  text-align: right;
}

.photo-hard-0ee1 .solid_d92b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.panel-medium-529b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.box-hard-02e6 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_f60e,
.badge-plasma-ef26 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.center_f60e h4,
.badge-plasma-ef26 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.center_f60e ul,
.badge-plasma-ef26 ul {
  list-style: none;
  padding: 0;
}

.center_f60e li,
.badge-plasma-ef26 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.top-b095 {
  font-style: italic;
}

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

.progress-mini-bfa6 {
  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;
}

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

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

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

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

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

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

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

.form-b257 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

.label_current_c493 .blue-70fa {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.thick_5a28 a:hover {
  color: white;
}

.label-hard-892e {
  list-style: none;
  padding: 0;
}

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

.label-hard-892e a {
  color: #b0b0b0;
  text-decoration: none;
}

.label-hard-892e a:hover {
  color: white;
}

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

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

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

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

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

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

.row-b1d4:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .dynamic_3777 {
    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;
  }
  
  .image-a4f0 {
    font-size: 2rem;
  }
  
  .out_ba2f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .list_thick_8470,
  .full_dde8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .paper-38e6,
  .active_active_010e,
  .content-dark-512a,
  .banner_b47c,
  .preview_static_44ca,
  .panel_936a,
  .media-3a70,
  .notification_b7e5 {
    grid-template-columns: 1fr;
  }
  
  .notice-fast-1900 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .label-simple-b52b {
    padding: var(--space-lg) 0;
  }
  
  .shade_solid_3df8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shade_solid_3df8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .button_under_491e {
    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;
  }
  
  .notice-fast-1900 {
    grid-template-columns: 1fr;
  }
  
  .tabs-left-1502,
  .disabled_pressed_4c15,
  .feature_middle_428d {
    flex-direction: column;
    width: 100%;
  }
  
  .form-first-8ccf,
  .caption_tall_e480,
  .tabs-left-1502 .button_under_491e,
  .disabled_pressed_4c15 .button_under_491e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .image-a4f0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .out_ba2f {
    font-size: 1.375rem;
  }
  
  .item_yellow_2593 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .card-middle-3ac0,
  .orange-4ca2,
  .picture-under-a00e,
  .icon-north-f327,
  .grid_cold_2924 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tertiary-68c8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fresh_3322 {
    gap: var(--space-xs);
  }
  
  .black_6e25 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .sort_west_ca63 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .new-f911 {
    width: 150px;
    height: 150px;
  }
  
  .tooltip_1773 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tall_46a5,
  .hidden-south-787a,
  .tabs-left-1502,
  .progress-mini-bfa6,
  .detail_slow_8aea,
  .tooltip_fresh_d401,
  .hero-orange-cc6b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .label-simple-b52b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: de41 */
.ghost-box-i1 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
