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

.border_e086:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.thumbnail_iron_74b5,
header,
.hero-0661,
.menu-tiny-51b8,
.tag-79c3,
.notice-fixed-daff,
.summary_df73,
.carousel-1332,
.notification-action-8f22 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.thumbnail_iron_74b5 {
  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);
}

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

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

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

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

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

.notice-silver-374a img {
  height: 36px;
  width: auto;
  display: block;
}

.fixed-52bf {
  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;
}

.slow-17b3 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.white-d657 {
  position: relative;
}

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

.badge-c073 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.backdrop_active_f952 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.orange_2a65[aria-expanded="true"] .last-6290:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .slow-17b3 {
    display: none;
  }
  
  .orange_2a65 {
    display: flex;
  }
  
  .fixed-52bf {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .backdrop_active_f952,
  .fixed-fdc2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .white-d657 {
    position: relative;
  }
  
  .tertiary-c4fc {
    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;
  }
  
  .badge-c073[aria-expanded="true"] + .tertiary-c4fc {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .block-8761 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .mini_ac7c {
    gap: 8px;
  }
  
  .backdrop_active_f952 {
    display: none;
  }
  
  .fixed-fdc2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .notice-silver-374a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.header_fast_67b9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-dynamic-385b {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.content-dynamic-385b strong {
  font-weight: 600;
  color: var(--color-text);
}

.content-dynamic-385b span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.logo-fluid-80be {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .lower_2399 {
    grid-template-columns: 1fr;
  }
  
  .steel_a7bc {
    font-size: 1.75rem;
  }
  
  .solid_fcd0 {
    order: -1;
    max-width: 100%;
  }
  
  .description_1c5a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .steel_a7bc {
    font-size: 1.5rem;
  }
  
  .media-large-4aaf {
    font-size: 1rem;
  }
  
  .hard_67d0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .description_1c5a {
    max-width: 250px;
  }
}

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

.image-north-16ca {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.pattern-27e4 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.picture-stone-8ccd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.row-41a0 {
  background: var(--color-bg-section);
}

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

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

.silver-0a2f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-80a7 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.texture-80a7 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) {
  .secondary_warm_5610 {
    grid-template-columns: 1fr;
  }
  
  .silver-0a2f {
    font-size: 1.75rem;
  }
  
  .west_0ac3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .silver-0a2f {
    font-size: 1.5rem;
  }
  
  .west_0ac3 h3 {
    font-size: 1.375rem;
  }
  
  .west_0ac3 h4 {
    font-size: 1.125rem;
  }
}

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

.heading-over-dcd2 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.picture-33bb {
  flex-shrink: 0;
}

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

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

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

.old-7f91,
.badge-62d7,
.gas_74af {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.old-7f91 thead,
.badge-62d7 thead {
  background: var(--color-primary);
  color: white;
}

.old-7f91 th,
.old-7f91 td,
.badge-62d7 th,
.badge-62d7 td,
.gas_74af th,
.gas_74af td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .old-7f91 th,
  .old-7f91 td,
  .badge-62d7 th,
  .badge-62d7 td,
  .gas_74af th,
  .gas_74af td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .old-7f91,
  .badge-62d7,
  .gas_74af {
    min-width: 600px;
  }
}

.old-7f91 th,
.badge-62d7 th,
.gas_74af th {
  font-weight: 600;
}

.old-7f91 tbody tr:hover,
.badge-62d7 tbody tr:hover,
.gas_74af tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pagination-4bae h4 {
  color: white;
}

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

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

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

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

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

.widget-huge-575d {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.rough-f98a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.thick_a0de {
  color: #4caf50;
}

.header_complex_5716 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture_a288 .tooltip-3ae8 {
  width: 100%;
  background: white;
}

.surface_left_43f9 .tooltip-3ae8 {
  color: #667eea;
}

.purple-2168 .tooltip-3ae8 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim_101b,
.title-inner-0b71,
.block-lower-f284,
.background-9a52 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.text-orange-8bb3 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.chip_5a56 .carousel_red_d556 {
  background: #e8f5e9;
  color: var(--color-success);
}

.outer-cca0 .carousel_red_d556 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .feature-cool-205b {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.clean_83f1 {
  text-align: center;
}

.solid-1061 {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.solid-1061 .video_easy_1c37 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-tiny-3c36 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.hard-4a53 {
  text-align: right;
}

.hard-4a53 .simple-0e4d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.outline-092e {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

.logo-west-3d53 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.layout-brown-64de {
  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);
}

.layout-brown-64de:hover {
  background: var(--color-bg-alt);
}

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

.layout-brown-64de[aria-expanded="true"] .form-be91 {
  transform: rotate(180deg);
}

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

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

.carousel-small-1f2a ul,
.carousel-small-1f2a ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.carousel-small-1f2a li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.container-e494,
.active_c9c1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.container-e494 h4,
.active_c9c1 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.container-e494 ul,
.active_c9c1 ul {
  list-style: none;
  padding: 0;
}

.container-e494 li,
.active_c9c1 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.dropdown-9dca ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.hard-1d51 {
  font-style: italic;
}

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

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

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

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

.breadcrumb-hard-21fd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.narrow_b63c .dropdown_down_bb71 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.notice_lite_a8a2 a:hover {
  color: white;
}

.image-mini-46cf {
  list-style: none;
  padding: 0;
}

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

.image-mini-46cf a {
  color: #b0b0b0;
  text-decoration: none;
}

.image-mini-46cf a:hover {
  color: white;
}

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

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

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

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

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

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

.shadow-28b4:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .icon-1960 {
    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;
  }
  
  .steel_a7bc {
    font-size: 2rem;
  }
  
  .silver-0a2f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .lower_2399,
  .secondary_warm_5610 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .article_4ad6,
  .dirty_10e2,
  .brown-522a,
  .feature-cool-205b,
  .fast-07ed,
  .new-5df7,
  .video-47e2,
  .article_slow_4f78 {
    grid-template-columns: 1fr;
  }
  
  .next-efb2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .summary_df73 {
    padding: var(--space-lg) 0;
  }
  
  .card_north_4654 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .card_north_4654 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tooltip-3ae8 {
    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;
  }
  
  .next-efb2 {
    grid-template-columns: 1fr;
  }
  
  .block_4528,
  .breadcrumb-hard-21fd,
  .nav_d5e7 {
    flex-direction: column;
    width: 100%;
  }
  
  .right-16c0,
  .pattern-27e4,
  .block_4528 .tooltip-3ae8,
  .breadcrumb-hard-21fd .tooltip-3ae8 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .steel_a7bc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .silver-0a2f {
    font-size: 1.375rem;
  }
  
  .wrapper-outer-107f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .picture-stone-8ccd,
  .hot-f2ee,
  .grid_5e17,
  .bright-2c27,
  .photo_ae6d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .caption_green_5b45 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .aside_gold_2bdd {
    gap: var(--space-xs);
  }
  
  .header_fast_67b9 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hard_f37e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .solid-1061 {
    width: 150px;
    height: 150px;
  }
  
  .highlight_a0ea {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .thumbnail_iron_74b5,
  .hero-0661,
  .block_4528,
  .main_motion_de36,
  .carousel-1332,
  .notification-action-8f22,
  .orange_2a65 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .summary_df73 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 42cc */
.ghost-box-s5 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.1;
}
