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

.fixed_c1d0:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.full-d81f):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. */
.full-d81f,
header,
.button-1a4c,
.easy-d287,
.media-blue-505c,
.advanced_caba,
.notice-f2d7,
.large-8f77,
.caption_cool_5297 {
  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
   ============================================ */
.full-d81f {
  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);
}

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

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

/* Scrolled state */
.full-d81f.section-pro-0022 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.dropdown-17e1 img {
  height: 36px;
  width: auto;
  display: block;
}

.content-09da {
  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;
}

.orange_94c9 {
  flex: 1;
}

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

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

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

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

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

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

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

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

.element-middle-3f51 {
  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;
}

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

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

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

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

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

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

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

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

.disabled-warm-f110 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .orange_94c9::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .orange_94c9.gradient-orange-40b9 {
    display: block;
    right: 0;
  }
  
  .description-e030 {
    flex-direction: column;
    gap: 0;
  }
  
  .component_a865 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .orange_94c9::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;
  }
  
  .orange_94c9.gradient-orange-40b9::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .orange_94c9 {
    display: none;
  }
  
  .white-2f01 {
    display: flex;
  }
  
  .content-09da {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .disabled-warm-f110,
  .icon_dark_caaa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hot_ce16 {
    position: relative;
  }
  
  .element-middle-3f51 {
    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;
  }
  
  .footer_54f9[aria-expanded="true"] + .element-middle-3f51 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .banner_green_cc44 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .box_e3ff {
    gap: 8px;
  }
  
  .disabled-warm-f110 {
    display: none;
  }
  
  .icon_dark_caaa {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dropdown-17e1 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.dynamic-b805 svg {
  flex-shrink: 0;
}

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

.dynamic-b805 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.preview-fluid-8c91 {
  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) {
  .preview-fluid-8c91 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .preview-fluid-8c91 {
    font-size: 1.5rem;
  }
}

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

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

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

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

.element-soft-dce0 {
  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;
}

.pro-7b9a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pro-7b9a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.menu-ed3c {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .notification-f37e {
    grid-template-columns: 1fr;
  }
  
  .preview-fluid-8c91 {
    font-size: 1.75rem;
  }
  
  .feature_621b {
    order: -1;
    max-width: 100%;
  }
  
  .menu-ed3c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .preview-fluid-8c91 {
    font-size: 1.5rem;
  }
  
  .status-e93f {
    font-size: 1rem;
  }
  
  .active_1b74 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .menu-ed3c {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.overlay-clean-df76 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.liquid-aca9 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;
}

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

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

.paper-330f {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

.notification-green-5ead {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.notification-green-5ead img {
  max-width: 100%;
  height: auto;
  display: block;
}

.notification-green-5ead pre,
.notification-green-5ead code {
  overflow-x: auto;
  max-width: 100%;
}

.notification-green-5ead 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);
}

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

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

.notification-green-5ead p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.notification-green-5ead ul,
.notification-green-5ead ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.notification-green-5ead li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.notification-green-5ead strong {
  font-weight: 600;
  color: var(--color-text);
}

.notification-green-5ead a {
  color: var(--color-primary);
  text-decoration: underline;
}

.notification-green-5ead a:hover {
  color: var(--color-primary-dark);
}

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

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

.yellow_3500 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) {
  .link_19cb {
    grid-template-columns: 1fr;
  }
  
  .list_light_25f3 {
    font-size: 1.75rem;
  }
  
  .notification-green-5ead {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .list_light_25f3 {
    font-size: 1.5rem;
  }
  
  .notification-green-5ead h3 {
    font-size: 1.375rem;
  }
  
  .notification-green-5ead h4 {
    font-size: 1.125rem;
  }
}

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

.prev-053e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.modal-mini-b862 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.hidden-up-ccfa {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.container-under-9e59 {
  flex-shrink: 0;
}

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

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

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

.border-north-dd5a,
.main_large_d2e1,
.media-iron-0cb1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.border-north-dd5a thead,
.main_large_d2e1 thead {
  background: var(--color-primary);
  color: white;
}

.border-north-dd5a th,
.border-north-dd5a td,
.main_large_d2e1 th,
.main_large_d2e1 td,
.media-iron-0cb1 th,
.media-iron-0cb1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .border-north-dd5a th,
  .border-north-dd5a td,
  .main_large_d2e1 th,
  .main_large_d2e1 td,
  .media-iron-0cb1 th,
  .media-iron-0cb1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .border-north-dd5a,
  .main_large_d2e1,
  .media-iron-0cb1 {
    min-width: 600px;
  }
}

.border-north-dd5a th,
.main_large_d2e1 th,
.media-iron-0cb1 th {
  font-weight: 600;
}

.border-north-dd5a tbody tr:hover,
.main_large_d2e1 tbody tr:hover,
.media-iron-0cb1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fixed_3561 h4 {
  color: white;
}

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

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

.table-1987:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.focus-d35e {
  list-style: none;
  padding: 0;
}

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

.simple_aee7 {
  color: #4caf50;
}

.outline-over-b8fc {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-bronze-32ee h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-0b78 .image_44e4 {
  width: 100%;
  background: white;
}

.background_solid_a65c .image_44e4 {
  color: #667eea;
}

.shadow-3547 .image_44e4 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-0233,
.module_fluid_c77e,
.accent-3ebc,
.red-b9e8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lower_11b0 .stone-7e17 {
  background: #e8f5e9;
  color: var(--color-success);
}

.aside_first_997a .stone-7e17 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.hero-full-607d {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.element_b5a8 {
  text-align: center;
}

.shade-23b9 {
  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);
}

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

.shade-23b9 .accordion_c9f9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-40b4 {
  border: 2px solid #4caf50;
}

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

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

.title-rough-1a7c {
  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;
}

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

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

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

.header_gas_4724 {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-east-7d31 {
  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);
}

.module-east-7d31:hover {
  background: var(--color-bg-alt);
}

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

.module-east-7d31[aria-expanded="true"] .link_middle_20a9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_f1f0 h4,
.overlay_78eb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.heading_f1f0 ul,
.overlay_78eb ul {
  list-style: none;
  padding: 0;
}

.heading_f1f0 li,
.overlay_78eb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.input-thick-ac90 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.basic_a2b5 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.thumbnail-clean-454d {
  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);
}

.thumbnail-clean-454d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.thumbnail-clean-454d p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.hard-8766 .surface_black_d4ed {
  color: #4caf50;
  font-size: 0.875rem;
}

.list-bronze-6988 {
  list-style: none;
  padding: 0;
}

.list-bronze-6988 li {
  margin-bottom: var(--space-xs);
}

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

.list-bronze-6988 a:hover {
  color: white;
}

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

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

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

.link_fixed_40ac a:hover {
  color: white;
}

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

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

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

.module-tall-94bd {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.avatar-light-d49c:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gradient_2b9d {
    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;
  }
  
  .preview-fluid-8c91 {
    font-size: 2rem;
  }
  
  .list_light_25f3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .notification-f37e,
  .link_19cb {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .modal-basic-6b1b,
  .outline-easy-be0f,
  .component_clean_ee15,
  .disabled_east_0ac8,
  .menu-f317,
  .video_lite_1683,
  .nav_53d9,
  .media-2495 {
    grid-template-columns: 1fr;
  }
  
  .copper_33a8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notice-f2d7 {
    padding: var(--space-lg) 0;
  }
  
  .liquid-aca9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .liquid-aca9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .image_44e4 {
    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;
  }
  
  .copper_33a8 {
    grid-template-columns: 1fr;
  }
  
  .notification-a0dd,
  .icon_8652,
  .solid_3f3f {
    flex-direction: column;
    width: 100%;
  }
  
  .top_957b,
  .overlay-clean-df76,
  .notification-a0dd .image_44e4,
  .icon_8652 .image_44e4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .preview-fluid-8c91 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .list_light_25f3 {
    font-size: 1.375rem;
  }
  
  .glass_18ea {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .paragraph-bright-3904,
  .dropdown-91f2,
  .badge-c397,
  .photo_stone_e2b3,
  .description-black-eb34 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .active_fef7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .modal_db1f {
    gap: var(--space-xs);
  }
  
  .dynamic-b805 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .easy-b073 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .shade-23b9 {
    width: 150px;
    height: 150px;
  }
  
  .dirty-a6bf {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .full-d81f,
  .button-1a4c,
  .notification-a0dd,
  .section_1cda,
  .large-8f77,
  .caption_cool_5297,
  .white-2f01 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notice-f2d7 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 3be7 */
.shadow-element-h6 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.0;
}
