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

.message_tiny_51f4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.disabled-plasma-d7f1):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. */
.disabled-plasma-d7f1,
header,
.banner-prev-3f7a,
.mini-a7a2,
.north-48a3,
.glass_0487,
.sort-4b58,
.medium-4cf6,
.element-afe4 {
  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
   ============================================ */
.disabled-plasma-d7f1 {
  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);
}

.icon-bright-41cf {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.disabled-plasma-d7f1.main-thick-b5a2 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.info-a1b1 {
  flex: 1;
}

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

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

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

.progress_f66a.logo-medium-7542 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.primary-1256 {
  position: relative;
}

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

.wood-f2c8 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.secondary-outer-7deb svg {
  flex-shrink: 0;
}

/* Header Download Button */
.green_5e72 {
  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_5e72: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_5e72 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.hot-40dc[aria-expanded="true"] .out_4219:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .info-a1b1 {
    display: none;
  }
  
  .hot-40dc {
    display: flex;
  }
  
  .status_inner_1a2a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .secondary-outer-7deb,
  .green_5e72 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .primary-1256 {
    position: relative;
  }
  
  .simple-5051 {
    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;
  }
  
  .wood-f2c8[aria-expanded="true"] + .simple-5051 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .breadcrumb-mini-4c62 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pressed-4ff8 {
    gap: 8px;
  }
  
  .secondary-outer-7deb {
    display: none;
  }
  
  .green_5e72 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .paper_6191 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.pattern-orange-9971 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pattern-orange-9971 svg {
  flex-shrink: 0;
}

.pattern-orange-9971 a {
  color: var(--color-primary);
  text-decoration: none;
}

.pattern-orange-9971 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.footer-iron-2ca5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-iron-2ca5 a:hover {
  text-decoration: underline;
}

.slider-orange-148e {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

.module-77e3 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .gallery-b96a {
    grid-template-columns: 1fr;
  }
  
  .pink-305f {
    font-size: 1.75rem;
  }
  
  .gallery_f3b8 {
    order: -1;
    max-width: 100%;
  }
  
  .module-77e3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pink-305f {
    font-size: 1.5rem;
  }
  
  .orange_b164 {
    font-size: 1rem;
  }
  
  .footer-iron-2ca5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .module-77e3 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass-70ab {
  background: var(--color-bg-section);
}

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

.info-906f {
  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);
}

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

.gradient-stone-902e {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-fixed-ff83 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.layout-fixed-ff83 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) {
  .steel-d5a3 {
    grid-template-columns: 1fr;
  }
  
  .alert_tall_d8f8 {
    font-size: 1.75rem;
  }
  
  .gallery_780c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .alert_tall_d8f8 {
    font-size: 1.5rem;
  }
  
  .gallery_780c h3 {
    font-size: 1.375rem;
  }
  
  .gallery_780c h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.article-new-895c {
  flex-shrink: 0;
}

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

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

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

.thumbnail_ec54,
.heading_6cc4,
.video-green-9fe5 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.thumbnail_ec54 thead,
.heading_6cc4 thead {
  background: var(--color-primary);
  color: white;
}

.thumbnail_ec54 th,
.thumbnail_ec54 td,
.heading_6cc4 th,
.heading_6cc4 td,
.video-green-9fe5 th,
.video-green-9fe5 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .thumbnail_ec54 th,
  .thumbnail_ec54 td,
  .heading_6cc4 th,
  .heading_6cc4 td,
  .video-green-9fe5 th,
  .video-green-9fe5 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .thumbnail_ec54,
  .heading_6cc4,
  .video-green-9fe5 {
    min-width: 600px;
  }
}

.thumbnail_ec54 th,
.heading_6cc4 th,
.video-green-9fe5 th {
  font-weight: 600;
}

.thumbnail_ec54 tbody tr:hover,
.heading_6cc4 tbody tr:hover,
.video-green-9fe5 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.module-short-129b {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.tag-advanced-be76 h4 {
  color: white;
}

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

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

.cold-d439:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.gold-2c86 {
  font-weight: 600;
  color: white;
}

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

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

.wide-e13d {
  color: #4caf50;
}

.hero-south-3642 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification-b5de .label_cd86 {
  width: 100%;
  background: white;
}

.rough-a6da .label_cd86 {
  color: #667eea;
}

.medium_31f9 .label_cd86 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .stone-e21f {
    padding: var(--space-md);
  }
  
  .background_lower_bf63 {
    padding: var(--space-md);
  }
  
  .sidebar-active-6190 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.over-9acd li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.liquid-a794,
.disabled_current_cbf3,
.dynamic_8fa7,
.disabled-old-c846 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.avatar-inner-c62b:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.pagination_bottom_5594 .huge-7ce4 {
  background: #e8f5e9;
  color: var(--color-success);
}

.gradient_dark_5344 .huge-7ce4 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.advanced-48fa {
  margin-top: var(--space-xxl);
}

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

.row_f527 {
  text-align: center;
}

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

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

.short_47ba .gold-2c86 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.slider-east-68cd {
  margin-bottom: var(--space-xl);
}

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

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

.text-current-7a0b {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.badge-upper-9667 {
  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;
}

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

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

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

.active_bd01 {
  text-align: right;
}

.active_bd01 .input-cfc5 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.module-fast-185c {
  background: #e8f5e9;
  color: #2e7d32;
}

.banner-fast-b102 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown_99d0[aria-expanded="true"] .bottom-b2ce {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .form-static-254e {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.container_e5b6 ul,
.progress_c1f1 ul {
  list-style: none;
  padding: 0;
}

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

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

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

.accent-solid-52b4 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.accent-solid-52b4 ul {
  list-style: none;
  padding: 0;
}

.accent-solid-52b4 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.liquid-808c {
  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);
}

.west_b0a0 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.heading-hard-0a16 {
  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);
}

.heading-hard-0a16:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.heading-hard-0a16 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.heading-hard-0a16 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.glass-1904 .blue_e534 {
  color: #4caf50;
  font-size: 0.875rem;
}

.wrapper-prev-8adc {
  list-style: none;
  padding: 0;
}

.wrapper-prev-8adc li {
  margin-bottom: var(--space-xs);
}

.wrapper-prev-8adc a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.wrapper-prev-8adc a:hover {
  color: white;
}

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

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

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

.pagination_plasma_fa9f a:hover {
  color: white;
}

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

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

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

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

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

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

.motion-3921:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .focus_a458 {
    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;
  }
  
  .pink-305f {
    font-size: 2rem;
  }
  
  .alert_tall_d8f8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .gallery-b96a,
  .steel-d5a3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .aside-5c25,
  .hidden-hard-0222,
  .west_2550,
  .thumbnail-3d45,
  .form-static-254e,
  .up_b9b7,
  .green-52d8,
  .media-wide-b2ab {
    grid-template-columns: 1fr;
  }
  
  .box-e012 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sort-4b58 {
    padding: var(--space-lg) 0;
  }
  
  .block_4e8c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .block_4e8c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .label_cd86 {
    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;
  }
  
  .box-e012 {
    grid-template-columns: 1fr;
  }
  
  .liquid_e115,
  .card_fluid_23d9,
  .under_ba7b {
    flex-direction: column;
    width: 100%;
  }
  
  .image_small_fa4c,
  .image_3861,
  .liquid_e115 .label_cd86,
  .card_fluid_23d9 .label_cd86 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pink-305f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .alert_tall_d8f8 {
    font-size: 1.375rem;
  }
  
  .aside-a126 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hover_e794,
  .column_next_506b,
  .badge-1bff,
  .caption_solid_cb6c,
  .pattern_south_5587 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .easy_7f44 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .heading_a341 {
    gap: var(--space-xs);
  }
  
  .pattern-orange-9971 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .link_b95e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .short_47ba {
    width: 150px;
    height: 150px;
  }
  
  .light_1850 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .disabled-plasma-d7f1,
  .banner-prev-3f7a,
  .liquid_e115,
  .outline_d835,
  .medium-4cf6,
  .element-afe4,
  .hot-40dc {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sort-4b58 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: f9d9 */
.promo-block-y9 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.0;
}
