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

.top-7c75:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.footer-36f3,
header,
.shade-9b18,
.card-bc6f,
.carousel_3727,
.logo_black_712a,
.form-cold-487b,
.search_016d,
.tall_6f01 {
  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
   ============================================ */
.footer-36f3 {
  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);
}

.thumbnail-motion-3697 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.footer-36f3.liquid-3c9f {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.up-f184 {
  flex: 1;
}

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

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

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

.medium_fee4.fn-active-adb1 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.gold-9cf9 {
  position: relative;
}

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

.container-fixed-cea0 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.column_basic_7618 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.accent_d91a[aria-expanded="true"] .cool-4196:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .up-f184 {
    display: none;
  }
  
  .accent_d91a {
    display: flex;
  }
  
  .header_984b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .column_basic_7618,
  .dark_f700 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .gold-9cf9 {
    position: relative;
  }
  
  .form_hard_1e01 {
    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;
  }
  
  .container-fixed-cea0[aria-expanded="true"] + .form_hard_1e01 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .label_hot_bb71 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tiny-1bd6 {
    gap: 8px;
  }
  
  .column_basic_7618 {
    display: none;
  }
  
  .dark_f700 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .main_7bb0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.motion_9a07 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hover-9b9d a {
  color: var(--color-primary);
  text-decoration: none;
}

.hover-9b9d a:hover {
  text-decoration: underline;
}

.hidden-stone-c5d5 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.background-center-72d6 {
  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;
}

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

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

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

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

.detail-plasma-0d14 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-c3e6 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .small-8b86 {
    grid-template-columns: 1fr;
  }
  
  .iron_9fc8 {
    font-size: 1.75rem;
  }
  
  .detail-plasma-0d14 {
    order: -1;
    max-width: 100%;
  }
  
  .tabs-c3e6 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .iron_9fc8 {
    font-size: 1.5rem;
  }
  
  .light_5ac8 {
    font-size: 1rem;
  }
  
  .hover-9b9d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tabs-c3e6 {
    max-width: 250px;
  }
}

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

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

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

.video-yellow-39b3 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.video-yellow-39b3:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.image-prev-0c8c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

.progress-bronze-3c56 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

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

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

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

.label-f584 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.form-cold-487b {
  padding: var(--space-xxl) 0;
}

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

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

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

.column-hot-16e3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-top-0efd {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.frame-top-0efd 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) {
  .button_huge_5bfa {
    grid-template-columns: 1fr;
  }
  
  .column-hot-16e3 {
    font-size: 1.75rem;
  }
  
  .item-f0d4 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .column-hot-16e3 {
    font-size: 1.5rem;
  }
  
  .item-f0d4 h3 {
    font-size: 1.375rem;
  }
  
  .item-f0d4 h4 {
    font-size: 1.125rem;
  }
}

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

.pagination-hard-0f6b {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.menu-dark-8932 {
  flex-shrink: 0;
}

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

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

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

.top-6903,
.description_44c6,
.row_c680 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.top-6903 thead,
.description_44c6 thead {
  background: var(--color-primary);
  color: white;
}

.top-6903 th,
.top-6903 td,
.description_44c6 th,
.description_44c6 td,
.row_c680 th,
.row_c680 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .top-6903 th,
  .top-6903 td,
  .description_44c6 th,
  .description_44c6 td,
  .row_c680 th,
  .row_c680 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .top-6903,
  .description_44c6,
  .row_c680 {
    min-width: 600px;
  }
}

.top-6903 th,
.description_44c6 th,
.row_c680 th {
  font-weight: 600;
}

.top-6903 tbody tr:hover,
.description_44c6 tbody tr:hover,
.row_c680 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pro_e71f h4 {
  color: white;
}

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

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

.active-dynamic-ebf0:last-child {
  border-bottom: none;
}

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

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

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

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

.image-255e:hover {
  text-decoration: underline;
}

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

.chip-ddfa {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

.yellow-373c {
  font-weight: 600;
  color: white;
}

.panel-large-68d0 {
  list-style: none;
  padding: 0;
}

.panel-large-68d0 li {
  padding: var(--space-xs) 0;
}

.popup_smooth_4842 {
  color: #4caf50;
}

.copper_b3a1 {
  color: #ff9800;
}

.filter-new-4c32 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .block-huge-48ed {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline_fluid_4720 .list-971d {
  width: 100%;
  background: white;
}

.section-solid-ee2f .list-971d {
  color: #667eea;
}

.hover_3b9a .list-971d {
  color: #f5576c;
}

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

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

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

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

.panel-hard-6c4e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .panel-hard-6c4e {
    padding: var(--space-md);
  }
  
  .avatar-f084 {
    padding: var(--space-md);
  }
  
  .alert-3018 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.border_tall_62b7,
.content-motion-ffc2,
.background_stone_c69a,
.article_out_20ea {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.info-pink-5ebf {
  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) {
  .info-pink-5ebf {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.filter-16ae {
  border-color: var(--color-warning);
}

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

.medium-ed53 .basic-17dd {
  background: #e8f5e9;
  color: var(--color-success);
}

.filter-16ae .basic-17dd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.red_c00f {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.row_99f8 {
  text-align: center;
}

.stone-34fe {
  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);
}

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

.stone-34fe .yellow-373c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-old-4e60 {
  border: 2px solid #4caf50;
}

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

.popup-hard-6136 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.layout-dirty-02b1 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.row-c550 {
  text-align: right;
}

.row-c550 .short_79f8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.border-light-1e81 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.sort-66ba {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.logo-1182[aria-expanded="true"] .south_e312 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .chip-short-71a3 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.status_hard_6f4c ul,
.hovered_cea5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.block-up-8435 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.widget_prev_b7ef {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-bc36 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.upper-bc36 a:hover {
  color: white;
}

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

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

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

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

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

.preview_057d a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .hot_850d,
  .easy-ea64 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.column_next_30ee .popup_steel_fd8e {
  color: #4caf50;
  font-size: 0.875rem;
}

.card-cab8 {
  list-style: none;
  padding: 0;
}

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

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

.card-cab8 a:hover {
  color: white;
}

.carousel-32e8 {
  list-style: none;
  padding: 0;
}

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

.carousel-32e8 a {
  color: #b0b0b0;
  text-decoration: none;
}

.carousel-32e8 a:hover {
  color: white;
}

.focused-3e88 {
  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);
}

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

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

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

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

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

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

.section-left-950e {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.section-left-950e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .focused-3e88 {
    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;
  }
  
  .iron_9fc8 {
    font-size: 2rem;
  }
  
  .column-hot-16e3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .small-8b86,
  .button_huge_5bfa {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .block-huge-48ed,
  .thumbnail-basic-b483,
  .old-54c6,
  .clean-b965,
  .chip-short-71a3,
  .green_4c4a,
  .complex-a721,
  .hot_850d,
  .easy-ea64 {
    grid-template-columns: 1fr;
  }
  
  .search-5e34 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .form-cold-487b {
    padding: var(--space-lg) 0;
  }
  
  .label-f584 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .label-f584 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .list-971d {
    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;
  }
  
  .search-5e34 {
    grid-template-columns: 1fr;
  }
  
  .purple_abe6,
  .tabs_437e,
  .highlight-2e3e {
    flex-direction: column;
    width: 100%;
  }
  
  .image-prev-0c8c,
  .gold_cf46,
  .purple_abe6 .list-971d,
  .tabs_437e .list-971d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .iron_9fc8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .column-hot-16e3 {
    font-size: 1.375rem;
  }
  
  .tag_fluid_7b54 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .avatar-steel-ac65,
  .warm_1289,
  .black_bcd6,
  .hard_10c4,
  .row-2f25 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .info-pink-5ebf {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .huge_0a01 {
    gap: var(--space-xs);
  }
  
  .motion_9a07 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .chip-ddfa {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .stone-34fe {
    width: 150px;
    height: 150px;
  }
  
  .red-0bf7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .footer-36f3,
  .shade-9b18,
  .purple_abe6,
  .aside_129e,
  .search_016d,
  .tall_6f01,
  .accent_d91a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .form-cold-487b {
    page-break-inside: avoid;
  }
}

/* css-noise: a0c3 */
.phantom-card-o6 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
