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

.down-2e01:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.east-e2d0):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.east-e2d0,
header,
.top-21c4,
.center-0e1e,
.hero-lower-1549,
.tertiary_43df,
.tooltip-cb9a,
.up_57cd,
.hero-full-49a4 {
  max-width: none;
}

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

.paragraph-silver-15c2 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.border_out_a761 {
  flex: 1;
}

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

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

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

.in-f027.fn-active-57d4 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_7bcd svg {
  flex-shrink: 0;
}

/* Header Download Button */
.panel-cool-19e9 {
  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;
}

.panel-cool-19e9: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);
}

.panel-cool-19e9 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.status_fc64[aria-expanded="true"] .aside-bb7f:nth-child(2) {
  opacity: 0;
}

.status_fc64[aria-expanded="true"] .aside-bb7f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .border_out_a761::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .border_out_a761.modal-small-9996 {
    display: block;
    right: 0;
  }
  
  .tertiary_inner_3a46 {
    flex-direction: column;
    gap: 0;
  }
  
  .in-f027 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .border_out_a761::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;
  }
  
  .border_out_a761.modal-small-9996::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .border_out_a761 {
    display: none;
  }
  
  .status_fc64 {
    display: flex;
  }
  
  .main_brown_db5e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .center_7bcd,
  .panel-cool-19e9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .frame_21de {
    position: relative;
  }
  
  .panel_689b {
    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;
  }
  
  .left_5b92[aria-expanded="true"] + .panel_689b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .block_slow_041c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .large_a8e0 {
    gap: 8px;
  }
  
  .center_7bcd {
    display: none;
  }
  
  .panel-cool-19e9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .item_b281 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .panel-cool-19e9 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .panel-cool-19e9 svg {
    width: 14px;
    height: 14px;
  }
  
  .dirty-a377 {
    gap: var(--space-sm);
  }
}

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

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

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

.cool_20f0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice-fixed-72f0 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.active-3dc7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.status-4bde {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .upper-9817 {
    grid-template-columns: 1fr;
  }
  
  .blue-3ccc {
    font-size: 1.75rem;
  }
  
  .status-4bde {
    order: -1;
    max-width: 100%;
  }
  
  .layout_bdea {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .blue-3ccc {
    font-size: 1.5rem;
  }
  
  .inner_fc84 {
    font-size: 1rem;
  }
  
  .gallery_9d7d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .layout_bdea {
    max-width: 250px;
  }
}

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

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

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

.content-simple-7f85 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.content-simple-7f85:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-13c5 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.upper-13c5 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);
}

.upper-13c5 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;
}

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

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

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

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

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

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

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

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

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

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

.picture-right-8384 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.picture-right-8384 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);
}

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

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

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

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

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

.picture-right-8384 strong {
  font-weight: 600;
  color: var(--color-text);
}

.picture-right-8384 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.picture-right-8384 a:hover {
  color: var(--color-primary-dark);
}

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

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

.info_9592 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) {
  .orange-a282 {
    grid-template-columns: 1fr;
  }
  
  .outline_abb6 {
    font-size: 1.75rem;
  }
  
  .picture-right-8384 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .outline_abb6 {
    font-size: 1.5rem;
  }
  
  .picture-right-8384 h3 {
    font-size: 1.375rem;
  }
  
  .picture-right-8384 h4 {
    font-size: 1.125rem;
  }
}

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

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

.avatar-focused-0631 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.section-under-4660 {
  flex-shrink: 0;
}

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

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

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

.mask_df08,
.pro_9a39,
.alert-selected-3bf8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mask_df08 thead,
.pro_9a39 thead {
  background: var(--color-primary);
  color: white;
}

.mask_df08 th,
.mask_df08 td,
.pro_9a39 th,
.pro_9a39 td,
.alert-selected-3bf8 th,
.alert-selected-3bf8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mask_df08 th,
  .mask_df08 td,
  .pro_9a39 th,
  .pro_9a39 td,
  .alert-selected-3bf8 th,
  .alert-selected-3bf8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .mask_df08,
  .pro_9a39,
  .alert-selected-3bf8 {
    min-width: 600px;
  }
}

.mask_df08 th,
.pro_9a39 th,
.alert-selected-3bf8 th {
  font-weight: 600;
}

.mask_df08 tbody tr:hover,
.pro_9a39 tbody tr:hover,
.alert-selected-3bf8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.mask_purple_f595 h4 {
  color: white;
}

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

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

.element-bronze-e96b:last-child {
  border-bottom: none;
}

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

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

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

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

.tag-full-bc53:hover {
  text-decoration: underline;
}

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

.shade-left-963a {
  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);
}

.shade-left-963a span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

.section-0d06 {
  color: #4caf50;
}

.filter-fd4f {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.card-bronze-86aa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.card-bronze-86aa p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline_hovered_1f5d .panel_fixed_ab9e {
  width: 100%;
  background: white;
}

.brown-5729 .panel_fixed_ab9e {
  color: #667eea;
}

.avatar_medium_3637 .panel_fixed_ab9e {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature_mini_3efa,
.hero-5c8b,
.breadcrumb_7cbf,
.card_a170 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.breadcrumb-up-c42a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.tooltip-de3c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.caption_current_dba1 .tooltip-de3c {
  background: #e8f5e9;
  color: var(--color-success);
}

.white_5086 .tooltip-de3c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.banner-basic-7c0e {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

.thumbnail-wide-4eef {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.pattern-hard-6265 {
  text-align: center;
}

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

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

.badge-light-a700 .caption_glass_9444 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.shadow-pro-3cb1 {
  color: var(--color-text-light);
}

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

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

.layout-liquid-caae {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.button-iron-4b54 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

.gas-17a3 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.primary_next_e364 {
  text-align: right;
}

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

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

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

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

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

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

.input-full-500a {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.short-4ee1 {
  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);
}

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

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

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

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

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

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

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

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

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

.dirty-7fd0:hover {
  background: var(--color-bg-alt);
}

.backdrop-blue-55a1 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dirty-7fd0[aria-expanded="true"] .backdrop-blue-55a1 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.info-outer-a4be {
  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);
}

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

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

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

.search-orange-d1e1,
.accordion-red-d566 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.search-orange-d1e1 h4,
.accordion-red-d566 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.search-orange-d1e1 ul,
.accordion-red-d566 ul {
  list-style: none;
  padding: 0;
}

.search-orange-d1e1 li,
.accordion-red-d566 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.focus-down-fa31 {
  font-style: italic;
}

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

.pressed-5b21 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.media_hard_f20c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.focus-1dc4 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-1dc4 li {
  margin-bottom: var(--space-xs);
}

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

.focus-1dc4 a:hover {
  color: white;
}

.overlay_050f {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.overlay_050f a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.overlay_050f a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.cold_dd65 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cold_dd65 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.cold_dd65 a:hover {
  color: white;
}

.avatar_25a2 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .active-bronze-95cb,
  .media_hard_f20c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.prev-4cfb .notice-fixed-72f0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.photo-slow-9b11 {
  list-style: none;
  padding: 0;
}

.photo-slow-9b11 li {
  margin-bottom: var(--space-xs);
}

.photo-slow-9b11 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.photo-slow-9b11 a:hover {
  color: white;
}

.video-dark-1866 {
  list-style: none;
  padding: 0;
}

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

.video-dark-1866 a {
  color: #b0b0b0;
  text-decoration: none;
}

.video-dark-1866 a:hover {
  color: white;
}

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

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

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

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

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

.description-dim-af68 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.description-dim-af68 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .avatar_25a2 {
    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;
  }
  
  .blue-3ccc {
    font-size: 2rem;
  }
  
  .outline_abb6 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .upper-9817,
  .orange-a282 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .up_f499,
  .media_easy_68aa,
  .shade_fa0a,
  .preview_copper_72b5,
  .heading-3d18,
  .wrapper_a7a5,
  .photo_rough_674d,
  .active-bronze-95cb,
  .media_hard_f20c {
    grid-template-columns: 1fr;
  }
  
  .stale-8a8f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tooltip-cb9a {
    padding: var(--space-lg) 0;
  }
  
  .upper-13c5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .upper-13c5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .panel_fixed_ab9e {
    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;
  }
  
  .stale-8a8f {
    grid-template-columns: 1fr;
  }
  
  .active-3dc7,
  .overlay_paper_3b2c,
  .overlay_ddf4 {
    flex-direction: column;
    width: 100%;
  }
  
  .tooltip_411e,
  .tooltip_7b11,
  .active-3dc7 .panel_fixed_ab9e,
  .overlay_paper_3b2c .panel_fixed_ab9e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .blue-3ccc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .outline_abb6 {
    font-size: 1.375rem;
  }
  
  .last-c58f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tiny-bc1c,
  .card-bronze-86aa,
  .media_d0c5,
  .notice-huge-ad38,
  .tiny_62e1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .list-0fd1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .stone-bed3 {
    gap: var(--space-xs);
  }
  
  .cool_20f0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .shade-left-963a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .badge-light-a700 {
    width: 150px;
    height: 150px;
  }
  
  .highlight_solid_e142 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .east-e2d0,
  .top-21c4,
  .active-3dc7,
  .pressed-5b21,
  .up_57cd,
  .hero-full-49a4,
  .status_fc64 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tooltip-cb9a {
    page-break-inside: avoid;
  }
}

/* css-noise: 61b4 */
.ghost-box-h3 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.3;
}
