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

.modal_fea8:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.preview-559d):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. */
.preview-559d,
header,
.wrapper_brown_da30,
.small-9f21,
.basic_42ef,
.fresh-8c66,
.copper_1cc5,
.accent-large-d004,
.action_53f9 {
  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
   ============================================ */
.preview-559d {
  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);
}

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

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

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

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

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

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

.box_bronze_581e {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.accent_cbe1 {
  flex: 1;
}

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

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

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

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

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

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

.medium-122b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.bottom-45c2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .accent_cbe1 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .accent_cbe1::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .accent_cbe1.medium-0f95 {
    display: block;
    right: 0;
  }
  
  .frame_pink_2d9d {
    flex-direction: column;
    gap: 0;
  }
  
  .tabs_fluid_10f7 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .accent_cbe1::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .accent_cbe1.medium-0f95::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .accent_cbe1 {
    display: none;
  }
  
  .south-9542 {
    display: flex;
  }
  
  .box_bronze_581e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .bottom-45c2,
  .smooth_a4c0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .black_3fcc {
    position: relative;
  }
  
  .lower_e1af {
    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;
  }
  
  .medium-122b[aria-expanded="true"] + .lower_e1af {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .motion_5cb2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .nav_2868 {
    gap: 8px;
  }
  
  .bottom-45c2 {
    display: none;
  }
  
  .smooth_a4c0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .notification_1371 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.surface_hard_a768 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.section-inner-af13 a {
  color: var(--color-primary);
  text-decoration: none;
}

.section-inner-af13 a:hover {
  text-decoration: underline;
}

.hidden-1e93 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.upper-593d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

.sort-bottom-3e05 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .block-f8f3 {
    grid-template-columns: 1fr;
  }
  
  .border-803b {
    font-size: 1.75rem;
  }
  
  .large-a40e {
    order: -1;
    max-width: 100%;
  }
  
  .silver_5abc {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border-803b {
    font-size: 1.5rem;
  }
  
  .tooltip_up_abad {
    font-size: 1rem;
  }
  
  .section-inner-af13 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .silver_5abc {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.sort-clean-70df {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

.progress-advanced-14b5 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.hidden-3742 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-9618 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) {
  .dirty_f8c0 {
    grid-template-columns: 1fr;
  }
  
  .notice_east_6289 {
    font-size: 1.75rem;
  }
  
  .gallery-cb40 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.right-8a6b {
  flex-shrink: 0;
}

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

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

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

.button_ba8a,
.shade-b62b,
.logo-black-eaa0 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.button_ba8a thead,
.shade-b62b thead {
  background: var(--color-primary);
  color: white;
}

.button_ba8a th,
.button_ba8a td,
.shade-b62b th,
.shade-b62b td,
.logo-black-eaa0 th,
.logo-black-eaa0 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .button_ba8a th,
  .button_ba8a td,
  .shade-b62b th,
  .shade-b62b td,
  .logo-black-eaa0 th,
  .logo-black-eaa0 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .button_ba8a,
  .shade-b62b,
  .logo-black-eaa0 {
    min-width: 600px;
  }
}

.button_ba8a th,
.shade-b62b th,
.logo-black-eaa0 th {
  font-weight: 600;
}

.button_ba8a tbody tr:hover,
.shade-b62b tbody tr:hover,
.logo-black-eaa0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fluid_232e h4 {
  color: white;
}

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

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

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

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

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

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

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

.preview-dirty-4fc4:hover {
  text-decoration: underline;
}

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

.list-selected-e321 {
  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);
}

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

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

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

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

.info_gold_6c57 {
  color: #4caf50;
}

.summary-dirty-1031 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .widget-dirty-00ab {
    grid-template-columns: 1fr;
  }
}

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

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

.sidebar-f6fb {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.3;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fixed_c585 .silver_a95b {
  width: 100%;
  background: white;
}

.selected_0e62 .silver_a95b {
  color: #667eea;
}

.last_59b9 .silver_a95b {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lower-dcef,
.accent_hovered_8dc0,
.outer_0bc4,
.alert-9b64 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-simple-57da {
  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);
}

.label_slow_1eac .filter-simple-57da {
  background: #e8f5e9;
  color: var(--color-success);
}

.medium_bc38 .filter-simple-57da {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-32fb {
  margin-top: var(--space-xxl);
}

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

.wide_1346 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.upper-371e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.column-large-549f {
  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;
}

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

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

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

.focused_6f9f {
  text-align: right;
}

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

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

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

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

.element-copper-816d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.box-large-8cb1 {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-d849 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-0abf li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .pattern-center-9a97 {
    grid-template-columns: 1fr;
  }
}

.container_6f26,
.element-steel-1656 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.container_6f26 h4,
.element-steel-1656 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.container_6f26 ul,
.element-steel-1656 ul {
  list-style: none;
  padding: 0;
}

.container_6f26 li,
.element-steel-1656 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .header-old-421d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.overlay_dark_c829 {
  font-style: italic;
}

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

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

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

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

.header-green-8a04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay-5f45 .progress-f9e5 {
  color: #4caf50;
  font-size: 0.875rem;
}

.row-dynamic-29c8 {
  list-style: none;
  padding: 0;
}

.row-dynamic-29c8 li {
  margin-bottom: var(--space-xs);
}

.row-dynamic-29c8 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.row-dynamic-29c8 a:hover {
  color: white;
}

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

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

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

.motion_adac a:hover {
  color: white;
}

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

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

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

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

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

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

.pink-fccc:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fast-ffdb {
    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;
  }
  
  .border-803b {
    font-size: 2rem;
  }
  
  .notice_east_6289 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .block-f8f3,
  .dirty_f8c0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .widget-dirty-00ab,
  .detail_dim_86fb,
  .selected-3bf1,
  .panel-dark-b430,
  .pattern-center-9a97,
  .header-old-421d,
  .sort-ae0e,
  .secondary_fixed_d6ed {
    grid-template-columns: 1fr;
  }
  
  .cool-55fd {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .copper_1cc5 {
    padding: var(--space-lg) 0;
  }
  
  .hidden-3742 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hidden-3742 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .silver_a95b {
    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;
  }
  
  .cool-55fd {
    grid-template-columns: 1fr;
  }
  
  .sort-bottom-3e05,
  .header-green-8a04,
  .mask-38b5 {
    flex-direction: column;
    width: 100%;
  }
  
  .sort-clean-70df,
  .pattern_8883,
  .sort-bottom-3e05 .silver_a95b,
  .header-green-8a04 .silver_a95b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border-803b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notice_east_6289 {
    font-size: 1.375rem;
  }
  
  .south_8e42 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .progress_1fb5,
  .breadcrumb-simple-ff94,
  .tag_3aa7,
  .nav_792e,
  .box_f587 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .upper_315e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .description_white_0923 {
    gap: var(--space-xs);
  }
  
  .surface_hard_a768 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .list-selected-e321 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .info_pink_f16d {
    width: 150px;
    height: 150px;
  }
  
  .new-5de4 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .preview-559d,
  .wrapper_brown_da30,
  .sort-bottom-3e05,
  .status_f694,
  .accent-large-d004,
  .action_53f9,
  .south-9542 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .copper_1cc5 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5330 */
.promo-block-z2 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
