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

.pagination_warm_f84c:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.white-45a8):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. */
.white-45a8,
header,
.aside-plasma-0fe7,
.background-470c,
.highlight-steel-4c4c,
.heading_liquid_8d14,
.panel_dynamic_2e73,
.breadcrumb-smooth-0f41,
.video_275d {
  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
   ============================================ */
.white-45a8 {
  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);
}

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

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

/* Scrolled state */
.white-45a8.widget-old-4dce {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.west_eeab {
  flex: 1;
}

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

.gradient_d3f3 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

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

.gradient_d3f3.module-a8ce {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.main-small-b2c8 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.message-db9b svg {
  flex-shrink: 0;
}

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

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

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

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

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

.sort-over-1b7b {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.label_down_6b30[aria-expanded="true"] .sort-over-1b7b:nth-child(2) {
  opacity: 0;
}

.label_down_6b30[aria-expanded="true"] .sort-over-1b7b:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .west_eeab {
    display: none;
  }
  
  .label_down_6b30 {
    display: flex;
  }
  
  .carousel_8641 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .message-db9b,
  .secondary_8844 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .main-small-b2c8 {
    position: relative;
  }
  
  .smooth-e1fd {
    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;
  }
  
  .item_b3ce[aria-expanded="true"] + .smooth-e1fd {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .blue_4439 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.inner-f34f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.texture-cold-2747 a {
  color: var(--color-primary);
  text-decoration: none;
}

.texture-cold-2747 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.gallery-3e00 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.button-hot-1789 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .in-94de {
    grid-template-columns: 1fr;
  }
  
  .surface_36d7 {
    font-size: 1.75rem;
  }
  
  .notification_fc70 {
    order: -1;
    max-width: 100%;
  }
  
  .button-hot-1789 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .surface_36d7 {
    font-size: 1.5rem;
  }
  
  .panel-slow-cb2f {
    font-size: 1rem;
  }
  
  .texture-cold-2747 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .button-hot-1789 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.middle-6c9c {
  list-style: none;
  counter-reset: toc-counter;
}

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

.middle-6c9c 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);
}

.middle-6c9c 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;
}

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

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

.header-hard-631a {
  background: var(--color-bg-section);
}

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

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

.progress-focused-1dc1 {
  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);
}

.texture-brown-53a4 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-54b6 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.row-54b6 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) {
  .motion-a620 {
    grid-template-columns: 1fr;
  }
  
  .progress-focused-1dc1 {
    font-size: 1.75rem;
  }
  
  .over-b612 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .progress-focused-1dc1 {
    font-size: 1.5rem;
  }
  
  .over-b612 h3 {
    font-size: 1.375rem;
  }
  
  .over-b612 h4 {
    font-size: 1.125rem;
  }
}

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

.box-995d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.accordion-orange-1a00 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.icon-hot-6fac strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.south-521e {
  flex-shrink: 0;
}

.pattern-warm-7e4c strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.up_05b6,
.border-easy-ec71,
.rough_1c8b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.up_05b6 thead,
.border-easy-ec71 thead {
  background: var(--color-primary);
  color: white;
}

.up_05b6 th,
.up_05b6 td,
.border-easy-ec71 th,
.border-easy-ec71 td,
.rough_1c8b th,
.rough_1c8b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .up_05b6 th,
  .up_05b6 td,
  .border-easy-ec71 th,
  .border-easy-ec71 td,
  .rough_1c8b th,
  .rough_1c8b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .up_05b6,
  .border-easy-ec71,
  .rough_1c8b {
    min-width: 600px;
  }
}

.up_05b6 th,
.border-easy-ec71 th,
.rough_1c8b th {
  font-weight: 600;
}

.up_05b6 tbody tr:hover,
.border-easy-ec71 tbody tr:hover,
.rough_1c8b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.in_d31d h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.filter-purple-b899 {
  list-style: none;
  padding: 0;
}

.filter-purple-b899 li {
  padding: var(--space-xs) 0;
}

.table_light_9ed2 {
  color: #4caf50;
}

.notification-3fd8 {
  color: #ff9800;
}

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

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

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

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

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

.status-fresh-0d65 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink_6467 .bright-17b1 {
  width: 100%;
  background: white;
}

.message-prev-003b .bright-17b1 {
  color: #667eea;
}

.description-first-6d26 .bright-17b1 {
  color: #f5576c;
}

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

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

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

.light-784b {
  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);
}

.heading-first-050e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .heading-first-050e {
    padding: var(--space-md);
  }
  
  .huge_44fd {
    padding: var(--space-md);
  }
  
  .column_f2d7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.slider-next-7735 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.border-full-ceb7,
.shadow-263a,
.focused_9ef4,
.surface_f459 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.container-middle-d667 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 768px) {
  .shade-gold-7c37 {
    grid-template-columns: 1fr;
  }
}

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

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

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

.input-solid-bbe1 {
  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);
}

.right-4327 .input-solid-bbe1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.clean_a98f .input-solid-bbe1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview_4d94 {
  text-align: center;
}

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

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

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

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

.container-390c p {
  margin-bottom: var(--space-md);
}

.link-wood-0b3a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.fast-1d92 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.texture-fea2 {
  border: 2px solid #4caf50;
}

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

.simple-7f58 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

.aside-bottom-2c13 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.box_hard_008a {
  text-align: right;
}

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

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

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

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

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

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

.aside-a903 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.popup-red-431b {
  max-width: 900px;
  margin: 0 auto;
}

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

.container-short-b52d {
  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);
}

.container-short-b52d:hover {
  background: var(--color-bg-alt);
}

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

.container-short-b52d[aria-expanded="true"] .overlay_east_1d10 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-bef7,
.media_solid_958b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.info-bef7 h4,
.media_solid_958b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.info-bef7 ul,
.media_solid_958b ul {
  list-style: none;
  padding: 0;
}

.info-bef7 li,
.media_solid_958b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.image-inner-2389 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.hero_action_f550 {
  font-style: italic;
}

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

.header-6b9d {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-white-4ccb {
  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-white-4ccb {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.liquid-7054 .gallery-3e00 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.layout_right_7c35 a:hover {
  color: white;
}

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

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

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

.texture_04fa a:hover {
  color: white;
}

.logo-707a {
  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);
}

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

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

.alert-hot-fc04 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .logo-707a {
    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;
  }
  
  .surface_36d7 {
    font-size: 2rem;
  }
  
  .progress-focused-1dc1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .in-94de,
  .motion-a620 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent-complex-7532,
  .shade-gold-7c37,
  .tag-ba1b,
  .large_180e,
  .selected_a634,
  .module_action_f9e8,
  .slow-26f9,
  .section-white-4ccb {
    grid-template-columns: 1fr;
  }
  
  .overlay-9969 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .panel_dynamic_2e73 {
    padding: var(--space-lg) 0;
  }
  
  .middle-6c9c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .middle-6c9c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .bright-17b1 {
    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;
  }
  
  .overlay-9969 {
    grid-template-columns: 1fr;
  }
  
  .right_3013,
  .mask-69ae,
  .pressed-7dd4 {
    flex-direction: column;
    width: 100%;
  }
  
  .upper_12e3,
  .background_3665,
  .right_3013 .bright-17b1,
  .mask-69ae .bright-17b1 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .surface_36d7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .progress-focused-1dc1 {
    font-size: 1.375rem;
  }
  
  .module_a4d4 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .media_active_db35,
  .secondary_motion_b1ec,
  .hidden-5b86,
  .focused_22df,
  .easy_72a1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .glass-853b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .notification-mini-bc42 {
    gap: var(--space-xs);
  }
  
  .inner-f34f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .carousel_stone_593d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hovered_ee36 {
    width: 150px;
    height: 150px;
  }
  
  .black-de5e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .white-45a8,
  .aside-plasma-0fe7,
  .right_3013,
  .header-6b9d,
  .breadcrumb-smooth-0f41,
  .video_275d,
  .label_down_6b30 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .panel_dynamic_2e73 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a0c3 */
.phantom-card-d7 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
