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

.steel-3d78:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.lite_3fdd):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. */
.lite_3fdd,
header,
.secondary_c483,
.west-a563,
.widget-ec61,
.tertiary-left-e8af,
.dirty-a8d1,
.icon_east_ea03,
.advanced_b8cb {
  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
   ============================================ */
.lite_3fdd {
  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);
}

.title-pink-dcb3 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.fast-7704 {
  flex: 1;
}

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

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

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

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

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

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

.badge-d251 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.paragraph-medium-d796 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.secondary-upper-def9[aria-expanded="true"] .focus-06f7:nth-child(2) {
  opacity: 0;
}

.secondary-upper-def9[aria-expanded="true"] .focus-06f7:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .fast-7704::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .fast-7704.copper-129b {
    display: block;
    right: 0;
  }
  
  .wrapper-hovered-b722 {
    flex-direction: column;
    gap: 0;
  }
  
  .footer_black_c983 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .fast-7704::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;
  }
  
  .fast-7704.copper-129b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .fast-7704 {
    display: none;
  }
  
  .secondary-upper-def9 {
    display: flex;
  }
  
  .description-f21a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .paragraph-medium-d796,
  .green_72f2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .light_e483 {
    position: relative;
  }
  
  .input_under_df64 {
    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;
  }
  
  .badge-d251[aria-expanded="true"] + .input_under_df64 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hidden-new-8429 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .black_6290 {
    gap: 8px;
  }
  
  .paragraph-medium-d796 {
    display: none;
  }
  
  .green_72f2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .text_e0f6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.current_fd9e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-8ae4 {
  display: flex;
  gap: var(--space-sm);
}

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

.large-8c7d {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.large-8c7d strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hero_gold_b829 {
    grid-template-columns: 1fr;
  }
  
  .hover_outer_6cd0 {
    font-size: 1.75rem;
  }
  
  .pink_5427 {
    order: -1;
    max-width: 100%;
  }
  
  .smooth_f2ff {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hover_outer_6cd0 {
    font-size: 1.5rem;
  }
  
  .soft_69d7 {
    font-size: 1rem;
  }
  
  .primary_new_f10d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .smooth_f2ff {
    max-width: 250px;
  }
}

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

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

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

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

.border-full-ded1:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-7dad img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

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

.disabled-7dad a {
  color: var(--color-primary);
  text-decoration: underline;
}

.disabled-7dad a:hover {
  color: var(--color-primary-dark);
}

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

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

.top-b860 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) {
  .card_smooth_702e {
    grid-template-columns: 1fr;
  }
  
  .tooltip-ac43 {
    font-size: 1.75rem;
  }
  
  .disabled-7dad {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tooltip-ac43 {
    font-size: 1.5rem;
  }
  
  .disabled-7dad h3 {
    font-size: 1.375rem;
  }
  
  .disabled-7dad h4 {
    font-size: 1.125rem;
  }
}

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

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

.description-slow-1475 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.table-c023 {
  flex-shrink: 0;
}

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

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

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

.sort-old-9103,
.cold-7532,
.slow-9da3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sort-old-9103 thead,
.cold-7532 thead {
  background: var(--color-primary);
  color: white;
}

.sort-old-9103 th,
.sort-old-9103 td,
.cold-7532 th,
.cold-7532 td,
.slow-9da3 th,
.slow-9da3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sort-old-9103 th,
  .sort-old-9103 td,
  .cold-7532 th,
  .cold-7532 td,
  .slow-9da3 th,
  .slow-9da3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .sort-old-9103,
  .cold-7532,
  .slow-9da3 {
    min-width: 600px;
  }
}

.sort-old-9103 th,
.cold-7532 th,
.slow-9da3 th {
  font-weight: 600;
}

.sort-old-9103 tbody tr:hover,
.cold-7532 tbody tr:hover,
.slow-9da3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.dropdown-hot-03b4 h4 {
  color: white;
}

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

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

.block-slow-bd8f:last-child {
  border-bottom: none;
}

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

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

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

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

.input-gas-a9d9:hover {
  text-decoration: underline;
}

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

.message_737c {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.stale-9b88 {
  color: #4caf50;
}

.mini-3cbc {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.row-copper-0f79 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress-cool-1df4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.progress-cool-1df4 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.progress-cool-1df4 li {
  padding: var(--space-xs) 0;
  color: white;
}

.progress-cool-1df4 .notification-2a8d {
  width: 100%;
  background: white;
}

.article_4dc0 .notification-2a8d {
  color: #667eea;
}

.wrapper_gold_f81c .notification-2a8d {
  color: #f5576c;
}

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

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

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

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

.surface-bronze-4193 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.notification-plasma-64a5 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .surface-bronze-4193 {
    padding: var(--space-md);
  }
  
  .notification-plasma-64a5 {
    padding: var(--space-md);
  }
  
  .carousel-553a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.element-78bc li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.article_light_62c1,
.info_c72b,
.widget-brown-c578,
.texture_right_1e05 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.caption-last-d51e {
  border-color: var(--color-success);
}

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

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

.caption-last-d51e .block-d638 {
  background: #e8f5e9;
  color: var(--color-success);
}

.top-a06a .block-d638 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.info-warm-8ffc {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

.simple-317f {
  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);
}

.last_6c29 {
  text-align: center;
}

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

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

.copper-5758 .easy_72fb {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.modal-next-d0bf {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-short-d410 {
  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;
}

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

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

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

.rough-2be7 {
  text-align: right;
}

.rough-2be7 .pagination-316f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.caption-mini-8f37 {
  background: #e8f5e9;
  color: #2e7d32;
}

.paragraph-blue-9404 {
  background: #e3f2fd;
  color: #1565c0;
}

.widget-green-0e33 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.preview-60ed {
  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);
}

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

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

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

.preview-94d6 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-huge-1001 {
  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);
}

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

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

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

.menu-f629,
.surface_5ca0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.menu-f629 h4,
.surface_5ca0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.menu-f629 ul,
.surface_5ca0 ul {
  list-style: none;
  padding: 0;
}

.menu-f629 li,
.surface_5ca0 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.element-yellow-f07a {
  font-style: italic;
}

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

.article_a02b {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_fc3d .banner-8ae4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.accordion-86db {
  list-style: none;
  padding: 0;
}

.accordion-86db li {
  margin-bottom: var(--space-xs);
}

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

.accordion-86db a:hover {
  color: white;
}

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

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

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

.new_60a9 a:hover {
  color: white;
}

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

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

.list-6f89 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.tiny-f406:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .silver_1c1c {
    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;
  }
  
  .hover_outer_6cd0 {
    font-size: 2rem;
  }
  
  .tooltip-ac43 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hero_gold_b829,
  .card_smooth_702e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accordion-3af7,
  .west_526e,
  .top-aa64,
  .footer-advanced-f6a8,
  .gold_f3b4,
  .article-selected-861d,
  .under_3177,
  .accent_2b9d {
    grid-template-columns: 1fr;
  }
  
  .last-a08c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .dirty-a8d1 {
    padding: var(--space-lg) 0;
  }
  
  .soft_acaa li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .soft_acaa li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notification-2a8d {
    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;
  }
  
  .last-a08c {
    grid-template-columns: 1fr;
  }
  
  .title_3b49,
  .selected_5a70,
  .soft_f68d {
    flex-direction: column;
    width: 100%;
  }
  
  .block_ea31,
  .full_f209,
  .title_3b49 .notification-2a8d,
  .selected_5a70 .notification-2a8d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hover_outer_6cd0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tooltip-ac43 {
    font-size: 1.375rem;
  }
  
  .header_under_d60a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .article-soft-d0f9,
  .pro-2ed6,
  .dark-e17a,
  .aside_c359,
  .progress-b398 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .complex_5771 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .box_full_b91b {
    gap: var(--space-xs);
  }
  
  .current_fd9e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .message_737c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .copper-5758 {
    width: 150px;
    height: 150px;
  }
  
  .hovered_0ec7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .lite_3fdd,
  .secondary_c483,
  .title_3b49,
  .article_a02b,
  .icon_east_ea03,
  .advanced_b8cb,
  .secondary-upper-def9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .dirty-a8d1 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 6c81 */
.phantom-card-j4 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.0;
}
