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

.outline-right-f76d:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .tooltip-west-6b41 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .tooltip-west-6b41 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.container-top-f57d):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. */
.container-top-f57d,
header,
.heading_huge_db52,
.selected-b27d,
.tabs_b64d,
.alert-dark-d198,
.right_8ff9,
.heading-4a96,
.sidebar_ba2d {
  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
   ============================================ */
.container-top-f57d {
  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);
}

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

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

/* Scrolled state */
.container-top-f57d.highlight_9ac3 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.description-paper-7033 {
  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;
}

.form-yellow-366f {
  flex: 1;
}

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

.gradient-fluid-82a2 {
  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);
}

.gradient-fluid-82a2:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.gradient-fluid-82a2.search_118a {
  background: var(--color-primary);
  color: white;
}

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

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

.detail-21d1 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.notice-126a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.small_89b0[aria-expanded="true"] .focus-short-2651:nth-child(2) {
  opacity: 0;
}

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

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

  .form-yellow-366f::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .form-yellow-366f.search-2c6a {
    display: block;
    right: 0;
  }
  
  .component_outer_3a35 {
    flex-direction: column;
    gap: 0;
  }
  
  .gradient-fluid-82a2 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .form-yellow-366f::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;
  }
  
  .form-yellow-366f.search-2c6a::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .form-yellow-366f {
    display: none;
  }
  
  .small_89b0 {
    display: flex;
  }
  
  .description-paper-7033 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .notice-126a,
  .banner_1ce9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .content_5b57 {
    position: relative;
  }
  
  .focused_b5b2 {
    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;
  }
  
  .detail-21d1[aria-expanded="true"] + .focused_b5b2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .badge_in_c1fe {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .backdrop_brown_0ba0 {
    gap: 8px;
  }
  
  .notice-126a {
    display: none;
  }
  
  .banner_1ce9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .heading_16d2 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.media_1a45 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-fluid-d03e {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.avatar-fluid-d03e strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.glass-c389 {
  position: relative;
  text-align: center;
}

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

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

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

.slider-22b6 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .next_69ca {
    grid-template-columns: 1fr;
  }
  
  .notification_ce78 {
    font-size: 1.75rem;
  }
  
  .stale_e757 {
    order: -1;
    max-width: 100%;
  }
  
  .glass-c389 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification_ce78 {
    font-size: 1.5rem;
  }
  
  .focus_f5e0 {
    font-size: 1rem;
  }
  
  .filter_green_079d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .glass-c389 {
    max-width: 250px;
  }
}

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

.shade-3b41 {
  background: var(--color-primary);
  color: white;
}

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

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

.current-3aa6:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.fixed-7b03 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.simple-0ea3 {
  background: var(--color-bg-section);
}

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

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

.narrow-1c98 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall_e428 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) {
  .glass-dc45 {
    grid-template-columns: 1fr;
  }
  
  .narrow-1c98 {
    font-size: 1.75rem;
  }
  
  .current_d9d3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .narrow-1c98 {
    font-size: 1.5rem;
  }
  
  .current_d9d3 h3 {
    font-size: 1.375rem;
  }
  
  .current_d9d3 h4 {
    font-size: 1.125rem;
  }
}

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

.gradient-glass-590a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.slider-bright-e051 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.pagination_steel_eeb3 {
  flex-shrink: 0;
}

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

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

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

.small-15bf,
.south_ad9e,
.gallery-d704 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.small-15bf thead,
.south_ad9e thead {
  background: var(--color-primary);
  color: white;
}

.small-15bf th,
.small-15bf td,
.south_ad9e th,
.south_ad9e td,
.gallery-d704 th,
.gallery-d704 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .small-15bf th,
  .small-15bf td,
  .south_ad9e th,
  .south_ad9e td,
  .gallery-d704 th,
  .gallery-d704 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .small-15bf,
  .south_ad9e,
  .gallery-d704 {
    min-width: 600px;
  }
}

.small-15bf th,
.south_ad9e th,
.gallery-d704 th {
  font-weight: 600;
}

.small-15bf tbody tr:hover,
.south_ad9e tbody tr:hover,
.gallery-d704 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.image_6e9e h4 {
  color: white;
}

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

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

.rough-b797:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.text-small-283a {
  font-weight: 600;
  color: white;
}

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

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

.static_a931 {
  color: #4caf50;
}

.thumbnail_solid_31e3 {
  color: #ff9800;
}

.info-clean-64dd {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-small-d9ee {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.header_complex_90bc .pagination_plasma_25d9 {
  width: 100%;
  background: white;
}

.form_solid_a19c .pagination_plasma_25d9 {
  color: #667eea;
}

.title_1975 .pagination_plasma_25d9 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .sidebar_5722 {
    padding: var(--space-md);
  }
  
  .outline_1d47 {
    padding: var(--space-md);
  }
  
  .content_east_3dee {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.silver_0ea3,
.image_b756,
.search_1280,
.wrapper-956d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.widget-tall-1e59:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

@media (max-width: 768px) {
  .texture-new-28a3 {
    grid-template-columns: 1fr;
  }
}

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

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

.notification-lite-f07f {
  border-color: var(--color-warning);
}

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

.pattern_steel_4e3a .down-8466 {
  background: #e8f5e9;
  color: var(--color-success);
}

.notification-lite-f07f .down-8466 {
  background: #fff3e0;
  color: var(--color-warning);
}

.column-north-89f5 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.column-north-89f5 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

@media (max-width: 768px) {
  .dropdown-west-6bac {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.icon-4428 {
  text-align: center;
}

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

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

.easy-ffac .text-small-283a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.image-1aec p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.popup-down-6ee1 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.row-461d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.surface_7d81 {
  text-align: right;
}

.surface_7d81 .gas-71ba {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.stone-59d6 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.caption-solid-9b8a {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-bright-1d57 ul,
.header-bright-1d57 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.header-bright-1d57 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.dim-197c {
  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);
}

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

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

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

.breadcrumb-warm-3df9,
.nav-7a2a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.breadcrumb-warm-3df9 h4,
.nav-7a2a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.breadcrumb-warm-3df9 ul,
.nav-7a2a ul {
  list-style: none;
  padding: 0;
}

.breadcrumb-warm-3df9 li,
.nav-7a2a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.narrow-eb83 {
  font-style: italic;
}

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

.article-3f04 {
  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;
}

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

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

.module-glass-35e6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_7270 .caption_blue_8e51 {
  color: #4caf50;
  font-size: 0.875rem;
}

.soft-b1d8 {
  list-style: none;
  padding: 0;
}

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

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

.soft-b1d8 a:hover {
  color: white;
}

.pink-ef38 {
  list-style: none;
  padding: 0;
}

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

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

.pink-ef38 a:hover {
  color: white;
}

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

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

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

.notification-017b {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .glass-1832 {
    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;
  }
  
  .notification_ce78 {
    font-size: 2rem;
  }
  
  .narrow-1c98 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .next_69ca,
  .glass-dc45 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .alert-0b24,
  .texture-new-28a3,
  .breadcrumb-left-1d22,
  .dropdown-west-6bac,
  .primary-28d0,
  .gallery-05b4,
  .info-north-dcda,
  .slider_white_b1db {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb-black-a208 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .right_8ff9 {
    padding: var(--space-lg) 0;
  }
  
  .pink_5b26 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pink_5b26 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pagination_plasma_25d9 {
    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;
  }
  
  .breadcrumb-black-a208 {
    grid-template-columns: 1fr;
  }
  
  .gradient_out_d606,
  .module-glass-35e6,
  .label-stale-239c {
    flex-direction: column;
    width: 100%;
  }
  
  .fixed-7b03,
  .status_6080,
  .gradient_out_d606 .pagination_plasma_25d9,
  .module-glass-35e6 .pagination_plasma_25d9 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification_ce78 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .narrow-1c98 {
    font-size: 1.375rem;
  }
  
  .header_939a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .thick-453c,
  .secondary_soft_f19c,
  .iron_4f10,
  .disabled_dc27,
  .wood-20f4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid_upper_df5d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dirty_674f {
    gap: var(--space-xs);
  }
  
  .media_1a45 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .message_soft_fae9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .easy-ffac {
    width: 150px;
    height: 150px;
  }
  
  .box_complex_d656 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .container-top-f57d,
  .heading_huge_db52,
  .gradient_out_d606,
  .article-3f04,
  .heading-4a96,
  .sidebar_ba2d,
  .small_89b0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .right_8ff9 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 6a2d */
.promo-block-v2 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.1;
}
