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

.focus-99ee:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.modal_c3df):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. */
.modal_c3df,
header,
.table-short-d4c2,
.tooltip-8473,
.thick-040b,
.tabs_south_6b84,
.logo_gold_a4ab,
.frame_dirty_19be,
.stone-9f4f {
  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
   ============================================ */
.modal_c3df {
  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);
}

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

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

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

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

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

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

.breadcrumb-last-3276 {
  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;
}

.backdrop-de6e {
  flex: 1;
}

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

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

.new-3cc1:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.new-3cc1.panel-15ff {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress_tall_3804 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .backdrop-de6e::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .backdrop-de6e.main-579c {
    display: block;
    right: 0;
  }
  
  .media_copper_045e {
    flex-direction: column;
    gap: 0;
  }
  
  .new-3cc1 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .backdrop-de6e::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;
  }
  
  .backdrop-de6e.main-579c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .backdrop-de6e {
    display: none;
  }
  
  .in_73ed {
    display: flex;
  }
  
  .breadcrumb-last-3276 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .progress_tall_3804,
  .image_b50f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .chip_west_d13a {
    position: relative;
  }
  
  .notification_ec84 {
    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;
  }
  
  .steel_bb3f[aria-expanded="true"] + .notification_ec84 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .center_dd96 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .module_tall_112b {
    gap: 8px;
  }
  
  .progress_tall_3804 {
    display: none;
  }
  
  .image_b50f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .status_easy_adc1 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.sidebar_9572 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.disabled-a201 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.label-6ccb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bronze-4351 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .item_e0f3 {
    grid-template-columns: 1fr;
  }
  
  .right-c4c6 {
    font-size: 1.75rem;
  }
  
  .label-6ccb {
    order: -1;
    max-width: 100%;
  }
  
  .bronze-4351 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .right-c4c6 {
    font-size: 1.5rem;
  }
  
  .accent-tall-cc91 {
    font-size: 1rem;
  }
  
  .disabled-a201 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .bronze-4351 {
    max-width: 250px;
  }
}

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

.stone-366f {
  background: var(--color-primary);
  color: white;
}

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

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

.gas-02ff:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.focused_ac9d {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-complex-ffb8 {
  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);
}

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

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

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

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

.shadow-left-e576 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.shadow-left-e576 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);
}

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

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

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

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

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

.shadow-left-e576 strong {
  font-weight: 600;
  color: var(--color-text);
}

.shadow-left-e576 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.shadow-left-e576 a:hover {
  color: var(--color-primary-dark);
}

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

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

.middle_83c2 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) {
  .new-3b0d {
    grid-template-columns: 1fr;
  }
  
  .sidebar-complex-ffb8 {
    font-size: 1.75rem;
  }
  
  .shadow-left-e576 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sidebar-complex-ffb8 {
    font-size: 1.5rem;
  }
  
  .shadow-left-e576 h3 {
    font-size: 1.375rem;
  }
  
  .shadow-left-e576 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.slider-60b0 {
  flex-shrink: 0;
}

.pagination-tall-1acc strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.grid-8ffe,
.pattern-narrow-d7f9,
.silver_9592 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.grid-8ffe thead,
.pattern-narrow-d7f9 thead {
  background: var(--color-primary);
  color: white;
}

.grid-8ffe th,
.grid-8ffe td,
.pattern-narrow-d7f9 th,
.pattern-narrow-d7f9 td,
.silver_9592 th,
.silver_9592 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .grid-8ffe th,
  .grid-8ffe td,
  .pattern-narrow-d7f9 th,
  .pattern-narrow-d7f9 td,
  .silver_9592 th,
  .silver_9592 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .grid-8ffe,
  .pattern-narrow-d7f9,
  .silver_9592 {
    min-width: 600px;
  }
}

.grid-8ffe th,
.pattern-narrow-d7f9 th,
.silver_9592 th {
  font-weight: 600;
}

.grid-8ffe tbody tr:hover,
.pattern-narrow-d7f9 tbody tr:hover,
.silver_9592 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.new_c3b1 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.primary-pressed-d020 {
  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);
}

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

.plasma-c51e {
  font-weight: 600;
  color: white;
}

.aside-old-c48f {
  list-style: none;
  padding: 0;
}

.aside-old-c48f li {
  padding: var(--space-xs) 0;
}

.feature_blue_a049 {
  color: #4caf50;
}

.description-bottom-8699 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-stale-3cdb {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

.paragraph-wood-b8b4 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.lower_d0a8 .box-hot-e3c7 {
  width: 100%;
  background: white;
}

.stale-3b2e .box-hot-e3c7 {
  color: #667eea;
}

.secondary-hot-27b9 .box-hot-e3c7 {
  color: #f5576c;
}

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

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

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

.photo-medium-0269 {
  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);
}

.advanced-4e70 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .advanced-4e70 {
    padding: var(--space-md);
  }
  
  .fast_425a {
    padding: var(--space-md);
  }
  
  .article-red-1475 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.fresh_2143,
.frame-wide-ebbf,
.progress-new-8b6f,
.wrapper_4216 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.current-15f3 {
  border-color: var(--color-warning);
}

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

.small_b3e6 .gallery_cool_3341 {
  background: #e8f5e9;
  color: var(--color-success);
}

.current-15f3 .gallery_cool_3341 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.popup-fixed-0bdf {
  text-align: center;
}

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

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

.footer_b6c2 .plasma-c51e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-simple-594e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pink-ec52 {
  text-align: right;
}

.pink-ec52 .preview_e9b7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.message-copper-2c8d {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-63f6 {
  background: #e8f5e9;
  color: #2e7d32;
}

.search-3c34 {
  background: #e3f2fd;
  color: #1565c0;
}

.row-active-c736 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.paragraph-prev-fecb {
  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);
}

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

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

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

.input-huge-10db strong {
  color: var(--color-primary);
}

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

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

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

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

.filter-short-d519 {
  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);
}

.filter-short-d519:hover {
  background: var(--color-bg-alt);
}

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

.filter-short-d519[aria-expanded="true"] .article-af70 {
  transform: rotate(180deg);
}

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

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

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

.widget-smooth-8243 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.icon-south-385e,
.outline_under_c83f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.icon-south-385e h4,
.outline_under_c83f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.icon-south-385e ul,
.outline_under_c83f ul {
  list-style: none;
  padding: 0;
}

.icon-south-385e li,
.outline_under_c83f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.table-static-bb0e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.up-816e {
  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);
}

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

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

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

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

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

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

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

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

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

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

.preview-liquid-b6df .logo-f58d {
  color: #4caf50;
  font-size: 0.875rem;
}

.steel-4388 {
  list-style: none;
  padding: 0;
}

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

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

.steel-4388 a:hover {
  color: white;
}

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

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

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

.orange_d137 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .dark-c79d {
    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;
  }
  
  .right-c4c6 {
    font-size: 2rem;
  }
  
  .sidebar-complex-ffb8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .item_e0f3,
  .new-3b0d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .simple-1bb4,
  .link-pink-c3f3,
  .thumbnail-56d4,
  .orange_070e,
  .frame-hard-d9ae,
  .glass_daf5,
  .wood-6ce1,
  .section_d89c {
    grid-template-columns: 1fr;
  }
  
  .label_selected_48bd {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .logo_gold_a4ab {
    padding: var(--space-lg) 0;
  }
  
  .sidebar_efc7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .sidebar_efc7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .box-hot-e3c7 {
    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;
  }
  
  .label_selected_48bd {
    grid-template-columns: 1fr;
  }
  
  .paragraph_dark_b3e8,
  .wrapper_rough_cac8,
  .container_8b8e {
    flex-direction: column;
    width: 100%;
  }
  
  .focused_ac9d,
  .breadcrumb_east_1418,
  .paragraph_dark_b3e8 .box-hot-e3c7,
  .wrapper_rough_cac8 .box-hot-e3c7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .right-c4c6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sidebar-complex-ffb8 {
    font-size: 1.375rem;
  }
  
  .logo_990f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hard_17db,
  .mask-5d80,
  .notification-d288,
  .form_down_4ae2,
  .border-8cce {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .plasma-8fdb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .grid-hovered-be39 {
    gap: var(--space-xs);
  }
  
  .sidebar_9572 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .primary-pressed-d020 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer_b6c2 {
    width: 150px;
    height: 150px;
  }
  
  .paragraph-silver-b215 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .modal_c3df,
  .table-short-d4c2,
  .paragraph_dark_b3e8,
  .action_1ead,
  .frame_dirty_19be,
  .stone-9f4f,
  .in_73ed {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .logo_gold_a4ab {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 6af8 */
.promo-block-f9 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
