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

.next-98e9:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .accent-active-673b {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .accent-active-673b {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.form-3b07):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. */
.form-3b07,
header,
.title_blue_f391,
.huge_5e40,
.cold_f0eb,
.component-new-e152,
.notification-b49e,
.photo-last-027e,
.bottom-1ea4 {
  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
   ============================================ */
.form-3b07 {
  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);
}

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

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

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

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

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

.red-75d1 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.notification-short-ed01 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.tag-bfd0 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.down_08f1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .notification-short-ed01 {
    display: none;
  }
  
  .primary_basic_0fa1 {
    display: flex;
  }
  
  .notice_1e88 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .down_08f1,
  .frame_fc85 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tag-bfd0 {
    position: relative;
  }
  
  .sort_plasma_1d23 {
    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;
  }
  
  .wrapper_65d5[aria-expanded="true"] + .sort_plasma_1d23 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .black-a2c1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .stone_06ae {
    gap: 8px;
  }
  
  .down_08f1 {
    display: none;
  }
  
  .frame_fc85 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .red-75d1 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.status-2186 svg {
  flex-shrink: 0;
}

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

.status-2186 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.orange-e1cb a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.summary-74da {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-74da strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.frame-blue-01b9 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.item-static-ab73 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-7e13 {
  position: relative;
  text-align: center;
}

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

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

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

.west-77e3 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .backdrop_b009 {
    grid-template-columns: 1fr;
  }
  
  .grid_bronze_712d {
    font-size: 1.75rem;
  }
  
  .item-static-ab73 {
    order: -1;
    max-width: 100%;
  }
  
  .gold-7e13 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .grid_bronze_712d {
    font-size: 1.5rem;
  }
  
  .backdrop_6092 {
    font-size: 1rem;
  }
  
  .orange-e1cb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gold-7e13 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.section-medium-c503 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.silver-1f69 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-hovered-216e {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info_86bf 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) {
  .small_4064 {
    grid-template-columns: 1fr;
  }
  
  .dropdown_35dc {
    font-size: 1.75rem;
  }
  
  .blue_08ce {
    max-width: 100%;
  }
}

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

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

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

.tertiary-clean-d6b2 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.description_379d {
  flex-shrink: 0;
}

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

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

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

.carousel-ca84,
.focus-8953,
.main_silver_e453 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.carousel-ca84 thead,
.focus-8953 thead {
  background: var(--color-primary);
  color: white;
}

.carousel-ca84 th,
.carousel-ca84 td,
.focus-8953 th,
.focus-8953 td,
.main_silver_e453 th,
.main_silver_e453 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .carousel-ca84 th,
  .carousel-ca84 td,
  .focus-8953 th,
  .focus-8953 td,
  .main_silver_e453 th,
  .main_silver_e453 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .carousel-ca84,
  .focus-8953,
  .main_silver_e453 {
    min-width: 600px;
  }
}

.carousel-ca84 th,
.focus-8953 th,
.main_silver_e453 th {
  font-weight: 600;
}

.carousel-ca84 tbody tr:hover,
.focus-8953 tbody tr:hover,
.main_silver_e453 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.main-dim-95a7 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.avatar_gold_bc22 h4 {
  color: white;
}

.highlight-stone-2dcf {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.hidden-03da:last-child {
  border-bottom: none;
}

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

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

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

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

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

.hidden-small-91df {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.video-basic-0509 {
  list-style: none;
  padding: 0;
}

.video-basic-0509 li {
  padding: var(--space-xs) 0;
}

.gas-37bf {
  color: #4caf50;
}

.dirty-3080 {
  color: #ff9800;
}

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

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

.media-slow-3e7a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort_hard_f5a6 .modal-ea96 {
  width: 100%;
  background: white;
}

.icon-b519 .modal-ea96 {
  color: #667eea;
}

.thumbnail-south-2faa .modal-ea96 {
  color: #f5576c;
}

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

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

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

.bright-46ff {
  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);
}

.left-98ae h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.modal-wide-9dd2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .left-98ae {
    padding: var(--space-md);
  }
  
  .modal-wide-9dd2 {
    padding: var(--space-md);
  }
  
  .mini_344a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hot_3585,
.tall_ecd5,
.frame_562d,
.logo_light_d347 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.title-under-907a {
  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) {
  .title-under-907a {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.detail-lite-acc1 {
  border-color: var(--color-success);
}

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

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

.detail-lite-acc1 .mask_5032 {
  background: #e8f5e9;
  color: var(--color-success);
}

.panel-2233 .mask_5032 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.shadow-hard-f0b7 {
  margin-top: var(--space-xxl);
}

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

.dark_9cb4 {
  text-align: center;
}

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

.description-hard-88ca {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

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

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

.south-e5aa p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-26ee {
  border: 2px solid #4caf50;
}

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

.image-short-67a5 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.green_66ab {
  text-align: right;
}

.green_66ab .next-8275 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.last-e07b {
  background: #e3f2fd;
  color: #1565c0;
}

.tertiary-f37b {
  background: #fff3e0;
  color: #e65100;
}

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

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

.banner-dim-c32f {
  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);
}

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

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

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

.clean-358d strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.disabled-92e1 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tag_da63[aria-expanded="true"] .disabled-92e1 {
  transform: rotate(180deg);
}

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

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

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

.notification-in-2058 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.middle-3a81,
.modal_pro_68df {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.middle-3a81 h4,
.modal_pro_68df h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.middle-3a81 ul,
.modal_pro_68df ul {
  list-style: none;
  padding: 0;
}

.middle-3a81 li,
.modal_pro_68df li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sort_new_1059 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.small_fef2 .hard_7b5e {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.media_under_db76 a:hover {
  color: white;
}

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

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

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

.icon_outer_bf01 a:hover {
  color: white;
}

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

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

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

.active-over-6d79 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.list-thick-ad5a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .label_pink_b301 {
    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;
  }
  
  .grid_bronze_712d {
    font-size: 2rem;
  }
  
  .dropdown_35dc {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .backdrop_b009,
  .small_4064 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .module_fc25,
  .out_870a,
  .liquid-22e8,
  .background-down-5432,
  .slider_a1b2,
  .orange-5a70,
  .lower_173a,
  .article-11e8 {
    grid-template-columns: 1fr;
  }
  
  .outline_e220 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notification-b49e {
    padding: var(--space-lg) 0;
  }
  
  .dropdown_advanced_d6ff li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dropdown_advanced_d6ff li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .modal-ea96 {
    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;
  }
  
  .outline_e220 {
    grid-template-columns: 1fr;
  }
  
  .frame-blue-01b9,
  .panel-green-eae3,
  .wide-40e7 {
    flex-direction: column;
    width: 100%;
  }
  
  .section-medium-c503,
  .silver-1f69,
  .frame-blue-01b9 .modal-ea96,
  .panel-green-eae3 .modal-ea96 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .grid_bronze_712d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dropdown_35dc {
    font-size: 1.375rem;
  }
  
  .accent_9f0a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .simple_0ab8,
  .iron-34e9,
  .outline-brown-9162,
  .accent-light-a1ae,
  .pagination-bronze-699f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .title-under-907a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .image-bb21 {
    gap: var(--space-xs);
  }
  
  .status-2186 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .badge_978c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pressed_e68f {
    width: 150px;
    height: 150px;
  }
  
  .description-hard-88ca {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .form-3b07,
  .title_blue_f391,
  .frame-blue-01b9,
  .left_e307,
  .photo-last-027e,
  .bottom-1ea4,
  .primary_basic_0fa1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notification-b49e {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 37ce */
.shadow-element-p5 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.1;
}
