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

.brown_9706:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.hot_c005,
header,
.mask-iron-878a,
.tag_eb25,
.button_893f,
.article-f7f0,
.dropdown-purple-40db,
.last-9149,
.image-94f5 {
  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
   ============================================ */
.hot_c005 {
  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);
}

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

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

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

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

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

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

.hard-86c4 {
  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_brown_467f {
  flex: 1;
}

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

.logo-under-ee81 {
  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);
}

.logo-under-ee81:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.logo-under-ee81.fn-active-e4b2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.selected-cdca {
  position: relative;
}

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

.message-7faa svg {
  transition: transform 0.2s ease;
}

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

.shade-short-c193 {
  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;
}

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

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

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

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

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

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

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

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

.primary_bright_cd0e svg {
  flex-shrink: 0;
}

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

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

.prev-7ff5 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.description-static-9364[aria-expanded="true"] .heading_7b8e:nth-child(2) {
  opacity: 0;
}

.description-static-9364[aria-expanded="true"] .heading_7b8e:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .info_brown_467f {
    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_brown_467f::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .info_brown_467f.footer-bronze-f59d {
    display: block;
    right: 0;
  }
  
  .video-cf41 {
    flex-direction: column;
    gap: 0;
  }
  
  .logo-under-ee81 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .info_brown_467f::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_brown_467f.footer-bronze-f59d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .info_brown_467f {
    display: none;
  }
  
  .description-static-9364 {
    display: flex;
  }
  
  .hard-86c4 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .primary_bright_cd0e,
  .prev-7ff5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .selected-cdca {
    position: relative;
  }
  
  .shade-short-c193 {
    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;
  }
  
  .message-7faa[aria-expanded="true"] + .shade-short-c193 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .row-4149 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .mini-3b54 {
    gap: 8px;
  }
  
  .primary_bright_cd0e {
    display: none;
  }
  
  .prev-7ff5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .paper_53d9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.component-selected-4758 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.component-selected-4758 svg {
  flex-shrink: 0;
}

.component-selected-4758 a {
  color: var(--color-primary);
  text-decoration: none;
}

.component-selected-4758 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hard-6215 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  .mask-brown-9ccb {
    grid-template-columns: 1fr;
  }
}

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

.item-3db8 {
  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-56c5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-56c5 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.nav-red-eb83 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .fast_38f0 {
    grid-template-columns: 1fr;
  }
  
  .bright-42d5 {
    font-size: 1.75rem;
  }
  
  .nav-red-eb83 {
    order: -1;
    max-width: 100%;
  }
  
  .secondary_6723 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .bright-42d5 {
    font-size: 1.5rem;
  }
  
  .media-c4ab {
    font-size: 1rem;
  }
  
  .hard-6215 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .secondary_6723 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.pattern-362d {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

.card-out-9d32 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.dropdown-purple-40db {
  padding: var(--space-xxl) 0;
}

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

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

.preview-4b68 {
  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);
}

.description-old-dbfa {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-liquid-0dc8 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.aside-liquid-0dc8 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) {
  .accent-short-212c {
    grid-template-columns: 1fr;
  }
  
  .description-old-dbfa {
    font-size: 1.75rem;
  }
  
  .column_303d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .description-old-dbfa {
    font-size: 1.5rem;
  }
  
  .column_303d h3 {
    font-size: 1.375rem;
  }
  
  .column_303d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.carousel-narrow-8570 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.tertiary-liquid-8b74 {
  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;
}

.badge_577f {
  flex-shrink: 0;
}

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

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

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

.up-9e78,
.layout-aa30,
.tabs_center_97f3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.up-9e78 thead,
.layout-aa30 thead {
  background: var(--color-primary);
  color: white;
}

.up-9e78 th,
.up-9e78 td,
.layout-aa30 th,
.layout-aa30 td,
.tabs_center_97f3 th,
.tabs_center_97f3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .up-9e78 th,
  .up-9e78 td,
  .layout-aa30 th,
  .layout-aa30 td,
  .tabs_center_97f3 th,
  .tabs_center_97f3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .up-9e78,
  .layout-aa30,
  .tabs_center_97f3 {
    min-width: 600px;
  }
}

.up-9e78 th,
.layout-aa30 th,
.tabs_center_97f3 th {
  font-weight: 600;
}

.up-9e78 tbody tr:hover,
.layout-aa30 tbody tr:hover,
.tabs_center_97f3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.button-9fe6 h4 {
  color: white;
}

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

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

.picture_top_a6c1:last-child {
  border-bottom: none;
}

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

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

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

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

.focus-pressed-a4b6:hover {
  text-decoration: underline;
}

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

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

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

.border-basic-ce2d {
  font-weight: 600;
  color: white;
}

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

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

.glass_b811 {
  color: #4caf50;
}

.row-eb5d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.sidebar-prev-0985 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.orange_40a5 .black_c3eb {
  width: 100%;
  background: white;
}

.footer-silver-e4a3 .black_c3eb {
  color: #667eea;
}

.gas_3a84 .black_c3eb {
  color: #f5576c;
}

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

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

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

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

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

.badge-short-cb6c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .title_7f93 {
    padding: var(--space-md);
  }
  
  .badge-short-cb6c {
    padding: var(--space-md);
  }
  
  .motion_b1e5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.accordion-f482,
.feature-41b9,
.hover_medium_b154,
.container-paper-a9e2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.notice-bronze-754d {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.notification-9d41:hover {
  background: var(--color-primary-dark);
}

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

.layout-21e7 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.plasma_23b4 .tabs-ea5e {
  background: #e8f5e9;
  color: var(--color-success);
}

.upper_3c77 .tabs-ea5e {
  background: #fff3e0;
  color: var(--color-warning);
}

.section-old-9f25 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.section-old-9f25 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.outline-in-ec87 {
  margin-top: var(--space-xxl);
}

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

.pagination_ffea {
  text-align: center;
}

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

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

.column_25c8 .border-basic-ce2d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-purple-2076 {
  border: 2px solid #4caf50;
}

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

.small-26b7 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.pagination_warm_4ecb {
  text-align: right;
}

.pagination_warm_4ecb .tag-orange-d6c3 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.stone-eb8c {
  background: #e8f5e9;
  color: #2e7d32;
}

.article-right-20e8 {
  background: #e3f2fd;
  color: #1565c0;
}

.fixed-a015 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

.block-static-cc8c:hover {
  background: var(--color-bg-alt);
}

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

.block-static-cc8c[aria-expanded="true"] .preview_4105 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.full-830f {
  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);
}

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

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

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

.cool-7933,
.button_4f67 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.cool-7933 h4,
.button_4f67 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.cool-7933 ul,
.button_4f67 ul {
  list-style: none;
  padding: 0;
}

.cool-7933 li,
.button_4f67 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.icon-09d5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.wrapper-85c4 {
  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);
}

.upper_2e2f {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-5c94 {
  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) */
.text-basic-fc0e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.element-c0ae {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.element-c0ae a:hover {
  color: white;
}

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

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

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

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

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

.selected_5f42 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .paragraph-5c94,
  .text-basic-fc0e {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.tooltip_a0db .inner-a126 {
  color: #4caf50;
  font-size: 0.875rem;
}

.button-34ba {
  list-style: none;
  padding: 0;
}

.button-34ba li {
  margin-bottom: var(--space-xs);
}

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

.button-34ba a:hover {
  color: white;
}

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

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

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

.article_82c8 a:hover {
  color: white;
}

.right-16e8 {
  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);
}

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

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

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

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

.grid-8912 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.grid-8912 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;
}

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

.over-5fb1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .right-16e8 {
    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;
  }
  
  .bright-42d5 {
    font-size: 2rem;
  }
  
  .description-old-dbfa {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .fast_38f0,
  .accent-short-212c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pressed_a820,
  .under_3929,
  .up-2ede,
  .iron-ed77,
  .photo-b995,
  .selected-22f7,
  .overlay-4098,
  .paragraph-5c94,
  .text-basic-fc0e {
    grid-template-columns: 1fr;
  }
  
  .highlight-active-6df7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .dropdown-purple-40db {
    padding: var(--space-lg) 0;
  }
  
  .caption_063c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .caption_063c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .black_c3eb {
    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;
  }
  
  .highlight-active-6df7 {
    grid-template-columns: 1fr;
  }
  
  .backdrop_north_d2ca,
  .pagination-north-c4c6,
  .soft-f1c7 {
    flex-direction: column;
    width: 100%;
  }
  
  .pattern-362d,
  .current-4220,
  .backdrop_north_d2ca .black_c3eb,
  .pagination-north-c4c6 .black_c3eb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .bright-42d5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .description-old-dbfa {
    font-size: 1.375rem;
  }
  
  .media-lite-8012 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .notice_bronze_20b8,
  .row_09fd,
  .action-78ac,
  .breadcrumb-8d92,
  .tabs_30bd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .article_under_98d8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .smooth-83f9 {
    gap: var(--space-xs);
  }
  
  .component-selected-4758 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .in-19ea {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .column_25c8 {
    width: 150px;
    height: 150px;
  }
  
  .east_ae52 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hot_c005,
  .mask-iron-878a,
  .backdrop_north_d2ca,
  .fresh_c16c,
  .last-9149,
  .image-94f5,
  .description-static-9364 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .dropdown-purple-40db {
    page-break-inside: avoid;
  }
}

/* css-noise: b4f0 */
.ghost-box-b2 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
