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

.black-37c5:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.logo_12bd,
header,
.modal_current_49ae,
.dynamic_c257,
.next_1c2c,
.footer-short-4d15,
.panel-easy-f48d,
.complex-dfcb,
.slider-top-8b35 {
  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
   ============================================ */
.logo_12bd {
  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);
}

.primary-in-538c {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.slow-42f6 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.narrow-3651 {
  flex: 1;
}

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

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

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

.filter_brown_9480.fn-active-e85f {
  background: var(--color-primary);
  color: white;
}

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

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

.bottom-a8b3 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.tertiary_d9d0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.rough-9f80[aria-expanded="true"] .hero_862a:nth-child(2) {
  opacity: 0;
}

.rough-9f80[aria-expanded="true"] .hero_862a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .narrow-3651::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .narrow-3651.pattern-9a93 {
    display: block;
    right: 0;
  }
  
  .text-plasma-4d57 {
    flex-direction: column;
    gap: 0;
  }
  
  .filter_brown_9480 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .narrow-3651::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;
  }
  
  .narrow-3651.pattern-9a93::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .narrow-3651 {
    display: none;
  }
  
  .rough-9f80 {
    display: flex;
  }
  
  .right_c171 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tertiary_d9d0,
  .caption-dff8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .cool_c2d7 {
    position: relative;
  }
  
  .description-e972 {
    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;
  }
  
  .bottom-a8b3[aria-expanded="true"] + .description-e972 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .module-large-4014 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .focused-75ea {
    gap: 8px;
  }
  
  .tertiary_d9d0 {
    display: none;
  }
  
  .caption-dff8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .slow-42f6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.steel_225f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-narrow-6dcc {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .layout-wide-14a3 {
    grid-template-columns: 1fr;
  }
  
  .thumbnail_0493 {
    font-size: 1.75rem;
  }
  
  .dropdown_last_0998 {
    order: -1;
    max-width: 100%;
  }
  
  .gas_6e38 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .thumbnail_0493 {
    font-size: 1.5rem;
  }
  
  .header-mini-f834 {
    font-size: 1rem;
  }
  
  .block_609e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gas_6e38 {
    max-width: 250px;
  }
}

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

.breadcrumb-104b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.article-south-e1bf {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.south-8dad {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.menu-3af8 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.menu-3af8 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);
}

.menu-3af8 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;
}

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

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

.preview-last-6479 {
  background: var(--color-bg-section);
}

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

.description-wood-20f2 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev_5af0 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) {
  .thumbnail-b6f6 {
    grid-template-columns: 1fr;
  }
  
  .hero_stone_2c67 {
    font-size: 1.75rem;
  }
  
  .primary_last_af00 {
    max-width: 100%;
  }
}

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

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

.content-static-00cb {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.panel_short_5a58 {
  flex-shrink: 0;
}

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

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

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

.component_up_fbb5,
.south-0eb0,
.prev-940d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.component_up_fbb5 thead,
.south-0eb0 thead {
  background: var(--color-primary);
  color: white;
}

.component_up_fbb5 th,
.component_up_fbb5 td,
.south-0eb0 th,
.south-0eb0 td,
.prev-940d th,
.prev-940d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .component_up_fbb5 th,
  .component_up_fbb5 td,
  .south-0eb0 th,
  .south-0eb0 td,
  .prev-940d th,
  .prev-940d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .component_up_fbb5,
  .south-0eb0,
  .prev-940d {
    min-width: 600px;
  }
}

.component_up_fbb5 th,
.south-0eb0 th,
.prev-940d th {
  font-weight: 600;
}

.component_up_fbb5 tbody tr:hover,
.south-0eb0 tbody tr:hover,
.prev-940d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.static-c210 h4 {
  color: white;
}

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

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

.lower-a3eb:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.mask-8b50 {
  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);
}

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

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

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

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

.mask_9ff6 {
  color: #4caf50;
}

.logo-basic-f704 {
  color: #ff9800;
}

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

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

.overlay-glass-68c8 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.accordion-down-eace {
  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;
}

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

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

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

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

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

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

.widget-middle-11df h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-tiny-eb05 .notice_b953 {
  width: 100%;
  background: white;
}

.background_1075 .notice_b953 {
  color: #667eea;
}

.component_1d48 .notice_b953 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .basic_a634 {
    padding: var(--space-md);
  }
  
  .static_e046 {
    padding: var(--space-md);
  }
  
  .purple-22d1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.cool-11f5 ol,
.cool-11f5 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.cool-11f5 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.breadcrumb_3f83,
.selected-5c28,
.feature-eb2c,
.texture_fresh_2537 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.sort-prev-81d8:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.west_beb4 .border_hard_4d46 {
  background: #e8f5e9;
  color: var(--color-success);
}

.gallery_9041 .border_hard_4d46 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.accent-pressed-b957 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.tag-4457 {
  text-align: center;
}

.motion-37a4 {
  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);
}

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

.motion-37a4 .tag_pressed_611d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.tooltip-outer-956e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.mask-copper-76f2 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.search-over-1fff {
  border: 2px solid #4caf50;
}

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

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

.status-6f31 {
  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;
}

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

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

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

.tertiary_ca1a {
  text-align: right;
}

.tertiary_ca1a .preview-brown-1300 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.outline-down-73e4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.component_west_b96c {
  background: #e8f5e9;
  color: #2e7d32;
}

.filter-d293 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.accent-south-e670 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.heading-561a {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.sort_light_2c36[aria-expanded="true"] .heading-561a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

.wrapper-complex-cd71 {
  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-complex-cd71 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.focused_fe44 ul,
.complex_5e2e ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.fluid-9baa ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.clean-46fe {
  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);
}

.black_8be2 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_short_06f4 .avatar_c5d7 {
  color: #4caf50;
  font-size: 0.875rem;
}

.highlight-pro-6a11 {
  list-style: none;
  padding: 0;
}

.highlight-pro-6a11 li {
  margin-bottom: var(--space-xs);
}

.highlight-pro-6a11 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.highlight-pro-6a11 a:hover {
  color: white;
}

.primary-a3f4 {
  list-style: none;
  padding: 0;
}

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

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

.primary-a3f4 a:hover {
  color: white;
}

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

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

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

.purple-7df7 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .filter_upper_f556 {
    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;
  }
  
  .thumbnail_0493 {
    font-size: 2rem;
  }
  
  .hero_stone_2c67 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .layout-wide-14a3,
  .thumbnail-b6f6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .video_8327,
  .silver_f3dd,
  .hover_silver_e2d5,
  .overlay-new-9061,
  .wrapper-complex-cd71,
  .slider_tiny_3a8e,
  .component_1656,
  .icon-lite-9407 {
    grid-template-columns: 1fr;
  }
  
  .disabled_70cb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .panel-easy-f48d {
    padding: var(--space-lg) 0;
  }
  
  .menu-3af8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .menu-3af8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notice_b953 {
    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;
  }
  
  .disabled_70cb {
    grid-template-columns: 1fr;
  }
  
  .detail-narrow-6dcc,
  .icon_east_6ef3,
  .image-6a07 {
    flex-direction: column;
    width: 100%;
  }
  
  .article-south-e1bf,
  .south-8dad,
  .detail-narrow-6dcc .notice_b953,
  .icon_east_6ef3 .notice_b953 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .thumbnail_0493 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero_stone_2c67 {
    font-size: 1.375rem;
  }
  
  .main_a24c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .description-inner-f4ff,
  .module_middle_7aa4,
  .table-ca2a,
  .left-57eb,
  .shade-ef00 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .glass_1241 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .bright_94bd {
    gap: var(--space-xs);
  }
  
  .steel_225f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .mask-8b50 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .motion-37a4 {
    width: 150px;
    height: 150px;
  }
  
  .slider_98ff {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .logo_12bd,
  .modal_current_49ae,
  .detail-narrow-6dcc,
  .hero_03df,
  .complex-dfcb,
  .slider-top-8b35,
  .rough-9f80 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .panel-easy-f48d {
    page-break-inside: avoid;
  }
}

/* css-noise: c6b7 */
.shadow-element-z6 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
