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

.bottom-8126:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.easy-f7df):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. */
.easy-f7df,
header,
.simple-ff65,
.wide-e15a,
.pink-2445,
.grid_a497,
.west_d84d,
.section-in-09c3,
.paragraph_upper_2220 {
  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
   ============================================ */
.easy-f7df {
  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);
}

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

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

/* Scrolled state */
.easy-f7df.carousel-pink-ec7b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.hover-dark-04dc img {
  height: 36px;
  width: auto;
  display: block;
}

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

.south-9140 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.row-hard-4b6f {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.banner_9731 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tag-motion-cc32[aria-expanded="true"] .full-0ec4:nth-child(2) {
  opacity: 0;
}

.tag-motion-cc32[aria-expanded="true"] .full-0ec4:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .south-9140::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .south-9140.accordion-liquid-a34f {
    display: block;
    right: 0;
  }
  
  .mini_6c6b {
    flex-direction: column;
    gap: 0;
  }
  
  .widget_0f10 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .south-9140::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;
  }
  
  .south-9140.accordion-liquid-a34f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .south-9140 {
    display: none;
  }
  
  .tag-motion-cc32 {
    display: flex;
  }
  
  .caption-8040 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .banner_9731,
  .outline_motion_425d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .row-hard-4b6f {
    position: relative;
  }
  
  .heading-acc7 {
    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;
  }
  
  .overlay_25fc[aria-expanded="true"] + .heading-acc7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast_de67 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .element_middle_58dd {
    gap: 8px;
  }
  
  .banner_9731 {
    display: none;
  }
  
  .outline_motion_425d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hover-dark-04dc img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.notification_2cea svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

.tooltip-solid-8cf8 {
  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) {
  .tooltip-solid-8cf8 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .tooltip-solid-8cf8 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

.item-next-a8b7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item-next-a8b7 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .south_0ad0 {
    grid-template-columns: 1fr;
  }
  
  .tooltip-solid-8cf8 {
    font-size: 1.75rem;
  }
  
  .paragraph_0a64 {
    order: -1;
    max-width: 100%;
  }
  
  .button_tiny_0330 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tooltip-solid-8cf8 {
    font-size: 1.5rem;
  }
  
  .bronze_a984 {
    font-size: 1rem;
  }
  
  .surface_12b1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .button_tiny_0330 {
    max-width: 250px;
  }
}

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

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

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

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

.border-advanced-f1cf:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.video-dirty-32f6 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-plasma-9635 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

.outline-3f76 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.outline-3f76 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.outline-3f76 pre,
.outline-3f76 code {
  overflow-x: auto;
  max-width: 100%;
}

.outline-3f76 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);
}

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

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

.outline-3f76 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.outline-3f76 ul,
.outline-3f76 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.outline-3f76 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.outline-3f76 strong {
  font-weight: 600;
  color: var(--color-text);
}

.outline-3f76 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.outline-3f76 a:hover {
  color: var(--color-primary-dark);
}

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

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

.list_selected_99c6 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) {
  .main_c7c2 {
    grid-template-columns: 1fr;
  }
  
  .dynamic_d16f {
    font-size: 1.75rem;
  }
  
  .outline-3f76 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dynamic_d16f {
    font-size: 1.5rem;
  }
  
  .outline-3f76 h3 {
    font-size: 1.375rem;
  }
  
  .outline-3f76 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.north-3ae2 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.shade_37b1 {
  flex-shrink: 0;
}

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

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

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

.fixed-5922,
.backdrop-paper-3d82,
.search_9a03 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fixed-5922 thead,
.backdrop-paper-3d82 thead {
  background: var(--color-primary);
  color: white;
}

.fixed-5922 th,
.fixed-5922 td,
.backdrop-paper-3d82 th,
.backdrop-paper-3d82 td,
.search_9a03 th,
.search_9a03 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .fixed-5922 th,
  .fixed-5922 td,
  .backdrop-paper-3d82 th,
  .backdrop-paper-3d82 td,
  .search_9a03 th,
  .search_9a03 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .fixed-5922,
  .backdrop-paper-3d82,
  .search_9a03 {
    min-width: 600px;
  }
}

.fixed-5922 th,
.backdrop-paper-3d82 th,
.search_9a03 th {
  font-weight: 600;
}

.fixed-5922 tbody tr:hover,
.backdrop-paper-3d82 tbody tr:hover,
.search_9a03 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.inner-3a49 h4 {
  color: white;
}

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

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

.column-fresh-6c4a:last-child {
  border-bottom: none;
}

.column-fresh-6c4a dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.column-fresh-6c4a dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.accent-new-50eb:hover {
  text-decoration: underline;
}

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

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

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

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

.icon-e723 {
  list-style: none;
  padding: 0;
}

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

.preview-6934 {
  color: #4caf50;
}

.frame_black_4d6d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview_stone_a889 .message-f1f2 {
  width: 100%;
  background: white;
}

.background-active-4411 .message-f1f2 {
  color: #667eea;
}

.cold_0df4 .message-f1f2 {
  color: #f5576c;
}

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

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

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

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

.breadcrumb-121e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .breadcrumb-121e {
    padding: var(--space-md);
  }
  
  .overlay_f65e {
    padding: var(--space-md);
  }
  
  .thumbnail-3d85 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.column-895c,
.row_next_267e,
.widget_9566,
.status_old_eb3f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_c377 .new-b322 {
  background: #e8f5e9;
  color: var(--color-success);
}

.notification-e5f5 .new-b322 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.heading-blue-1bca {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.tabs-2051 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-dcc9 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.link_blue_f600 {
  text-align: right;
}

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

.outline-easy-44e1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

.block-bronze-1ed8 {
  background: #e8f5e9;
  color: #2e7d32;
}

.notice-8bec {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-74dd li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.pressed-864d {
  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);
}

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

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

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

.aside_cold_4909,
.stone-0404 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.aside_cold_4909 h4,
.stone-0404 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.aside_cold_4909 ul,
.stone-0404 ul {
  list-style: none;
  padding: 0;
}

.aside_cold_4909 li,
.stone-0404 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pagination_in_9099 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.disabled-19f0 {
  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);
}

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

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

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

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

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

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

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

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

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

.search-over-604b {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.search-over-604b .plasma-0005 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.content_fixed_36fd a:hover {
  color: white;
}

.input-bronze-1c37 {
  list-style: none;
  padding: 0;
}

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

.input-bronze-1c37 a {
  color: #b0b0b0;
  text-decoration: none;
}

.input-bronze-1c37 a:hover {
  color: white;
}

.info-579e {
  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);
}

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

.label-gold-2d50 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .info-579e {
    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;
  }
  
  .tooltip-solid-8cf8 {
    font-size: 2rem;
  }
  
  .dynamic_d16f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .south_0ad0,
  .main_c7c2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .paragraph-4edc,
  .picture_92ac,
  .middle-3343,
  .header_68b9,
  .feature_447c,
  .picture-2903,
  .menu_f969,
  .description-middle-82f4 {
    grid-template-columns: 1fr;
  }
  
  .hidden_becf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .west_d84d {
    padding: var(--space-lg) 0;
  }
  
  .badge_hot_0ecc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .badge_hot_0ecc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .message-f1f2 {
    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;
  }
  
  .hidden_becf {
    grid-template-columns: 1fr;
  }
  
  .slow_9658,
  .popup-3c27,
  .focus_iron_df41 {
    flex-direction: column;
    width: 100%;
  }
  
  .heading_1795,
  .video-dirty-32f6,
  .slow_9658 .message-f1f2,
  .popup-3c27 .message-f1f2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tooltip-solid-8cf8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dynamic_d16f {
    font-size: 1.375rem;
  }
  
  .thick_6011 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .mini-eb56,
  .tertiary_action_673b,
  .header-8913,
  .grid-iron-0b87,
  .backdrop_thick_613e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .element_short_5b41 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .logo-2ce4 {
    gap: var(--space-xs);
  }
  
  .notification_2cea {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .chip_bronze_7b7c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .next_13be {
    width: 150px;
    height: 150px;
  }
  
  .description-200a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .easy-f7df,
  .simple-ff65,
  .slow_9658,
  .tertiary_beb2,
  .section-in-09c3,
  .paragraph_upper_2220,
  .tag-motion-cc32 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .west_d84d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 470a */
.shadow-element-b7 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.1;
}
