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

.alert_edf5:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.menu-plasma-47c9):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. */
.menu-plasma-47c9,
header,
.under_20e9,
.hard-c418,
.wood-e5c9,
.green-e873,
.gallery-large-851d,
.media-dim-f5cf,
.dropdown_8c07 {
  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
   ============================================ */
.menu-plasma-47c9 {
  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);
}

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

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

/* Scrolled state */
.menu-plasma-47c9.highlight-down-c447 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.dropdown_5089 {
  flex: 1;
}

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

.nav-orange-6eab {
  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);
}

.nav-orange-6eab:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-orange-6eab.progress_cold_fe94 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-6a9d svg {
  flex-shrink: 0;
}

/* Header Download Button */
.column-first-693a {
  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;
}

.column-first-693a: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);
}

.column-first-693a svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .dropdown_5089::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .dropdown_5089.photo_wide_23ac {
    display: block;
    right: 0;
  }
  
  .down-b522 {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-orange-6eab {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .dropdown_5089::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;
  }
  
  .dropdown_5089.photo_wide_23ac::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .dropdown_5089 {
    display: none;
  }
  
  .aside-949d {
    display: flex;
  }
  
  .preview-inner-5319 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .aside-6a9d,
  .column-first-693a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .highlight_wide_62a8 {
    position: relative;
  }
  
  .banner-da99 {
    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;
  }
  
  .detail_3fd7[aria-expanded="true"] + .banner-da99 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .west-0bdb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .carousel-cb10 {
    gap: 8px;
  }
  
  .aside-6a9d {
    display: none;
  }
  
  .column-first-693a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .accordion_853e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.heading-wood-11d8 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.heading-wood-11d8 svg {
  flex-shrink: 0;
}

.heading-wood-11d8 a {
  color: var(--color-primary);
  text-decoration: none;
}

.heading-wood-11d8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.footer-yellow-ae35 a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-yellow-ae35 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.aside-under-0e82 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

.next-278c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.huge-d5d1 {
  position: relative;
  text-align: center;
}

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

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

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

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

.tabs-brown-4f3e {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .tag_under_ebb5 {
    grid-template-columns: 1fr;
  }
  
  .grid-clean-f835 {
    font-size: 1.75rem;
  }
  
  .next-278c {
    order: -1;
    max-width: 100%;
  }
  
  .huge-d5d1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .grid-clean-f835 {
    font-size: 1.5rem;
  }
  
  .modal-simple-28c5 {
    font-size: 1rem;
  }
  
  .footer-yellow-ae35 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .huge-d5d1 {
    max-width: 250px;
  }
}

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

.huge-66cd {
  background: var(--color-primary);
  color: white;
}

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

.photo-hot-4ccd {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.photo-hot-4ccd:hover {
  background: var(--color-primary);
  color: white;
}

.title-medium-478c {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.title-medium-478c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-6a30 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.card-6a30 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-6a30 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-6a30 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.gallery-large-851d {
  padding: var(--space-xxl) 0;
}

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

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

.menu_copper_abcb {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clean-b0cc 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) {
  .wrapper-action-922d {
    grid-template-columns: 1fr;
  }
  
  .hero-out-dc7e {
    font-size: 1.75rem;
  }
  
  .gradient_mini_3022 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-out-dc7e {
    font-size: 1.5rem;
  }
  
  .gradient_mini_3022 h3 {
    font-size: 1.375rem;
  }
  
  .gradient_mini_3022 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.article-orange-eebc {
  flex-shrink: 0;
}

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

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

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

.pagination-lower-ab49,
.white_9ef4,
.picture-051e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pagination-lower-ab49 thead,
.white_9ef4 thead {
  background: var(--color-primary);
  color: white;
}

.pagination-lower-ab49 th,
.pagination-lower-ab49 td,
.white_9ef4 th,
.white_9ef4 td,
.picture-051e th,
.picture-051e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pagination-lower-ab49 th,
  .pagination-lower-ab49 td,
  .white_9ef4 th,
  .white_9ef4 td,
  .picture-051e th,
  .picture-051e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pagination-lower-ab49,
  .white_9ef4,
  .picture-051e {
    min-width: 600px;
  }
}

.pagination-lower-ab49 th,
.white_9ef4 th,
.picture-051e th {
  font-weight: 600;
}

.pagination-lower-ab49 tbody tr:hover,
.white_9ef4 tbody tr:hover,
.picture-051e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.dirty_b5be h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.hero-tiny-38ee {
  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);
}

.hero-tiny-38ee span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.mini-2111 {
  list-style: none;
  padding: 0;
}

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

.summary_1e4b {
  color: #4caf50;
}

.rough-2f01 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-hot-2f3d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.slider-hot-2f3d ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.slider-hot-2f3d li {
  padding: var(--space-xs) 0;
  color: white;
}

.slider-hot-2f3d .sort-92cc {
  width: 100%;
  background: white;
}

.main-d3c5 .sort-92cc {
  color: #667eea;
}

.row_2415 .sort-92cc {
  color: #f5576c;
}

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

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

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

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

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

.image-dynamic-8b88 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .medium_6bd0 {
    padding: var(--space-md);
  }
  
  .image-dynamic-8b88 {
    padding: var(--space-md);
  }
  
  .pattern_yellow_7020 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.alert_south_7659,
.form-5bd4,
.white-befc,
.background_south_c8c9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.static-405d h4 {
  margin-bottom: var(--space-md);
}

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

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

.article_92c4 {
  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_92c4 {
    grid-template-columns: 1fr;
  }
}

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

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

.gradient-1e6d {
  border-color: var(--color-warning);
}

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

.large-b929 .huge_2e9d {
  background: #e8f5e9;
  color: var(--color-success);
}

.gradient-1e6d .huge_2e9d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.iron-33b2 {
  margin-top: var(--space-xxl);
}

.table-pink-c698 {
  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);
}

.text_current_96b0 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-tall-86ba {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.breadcrumb-large-d7f1 {
  border: 2px solid #4caf50;
}

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

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

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

.caption-medium-42e5 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.tiny_0c7f {
  text-align: right;
}

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

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

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

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

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

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

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

.bronze-290d {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-iron-7593 {
  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);
}

.tertiary-iron-7593:hover {
  background: var(--color-bg-alt);
}

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

.tertiary-iron-7593[aria-expanded="true"] .backdrop_pro_0635 {
  transform: rotate(180deg);
}

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

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

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

.list-in-ab55 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.smooth_4349 ul,
.container-c15e ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall_e477 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo_465c .aside-under-0e82 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.under_a95a a:hover {
  color: white;
}

.block-66cd {
  list-style: none;
  padding: 0;
}

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

.block-66cd a {
  color: #b0b0b0;
  text-decoration: none;
}

.block-66cd a:hover {
  color: white;
}

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

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

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

.active-soft-1991 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.advanced-55b1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .purple_36b2 {
    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;
  }
  
  .grid-clean-f835 {
    font-size: 2rem;
  }
  
  .hero-out-dc7e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tag_under_ebb5,
  .wrapper-action-922d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shade-mini-b238,
  .article_92c4,
  .advanced-3608,
  .hard-80b4,
  .link-new-baae,
  .video-5ac1,
  .progress-east-dff7,
  .panel_rough_54b3 {
    grid-template-columns: 1fr;
  }
  
  .hover-up-9a8b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gallery-large-851d {
    padding: var(--space-lg) 0;
  }
  
  .card-6a30 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .card-6a30 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .sort-92cc {
    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;
  }
  
  .hover-up-9a8b {
    grid-template-columns: 1fr;
  }
  
  .wrapper_prev_6540,
  .brown-78af,
  .gallery_93ac {
    flex-direction: column;
    width: 100%;
  }
  
  .slider_86f6,
  .top_c354,
  .wrapper_prev_6540 .sort-92cc,
  .brown-78af .sort-92cc {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .grid-clean-f835 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero-out-dc7e {
    font-size: 1.375rem;
  }
  
  .dirty-8f91 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .border_9612,
  .summary_next_0be7,
  .focus-a033,
  .badge_6cf5,
  .table_1967 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .clean_b573 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .right_d7d0 {
    gap: var(--space-xs);
  }
  
  .heading-wood-11d8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hero-tiny-38ee {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .border-a892 {
    width: 150px;
    height: 150px;
  }
  
  .full-522b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .menu-plasma-47c9,
  .under_20e9,
  .wrapper_prev_6540,
  .hard_fba2,
  .media-dim-f5cf,
  .dropdown_8c07,
  .aside-949d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gallery-large-851d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e851 */
.phantom-card-w3 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
