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

.short_8284:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.pagination-0863):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. */
.pagination-0863,
header,
.article-lower-3424,
.feature_77cf,
.wood_eb65,
.overlay-c043,
.description-silver-30a3,
.sort_a58d,
.carousel_e4ef {
  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
   ============================================ */
.pagination-0863 {
  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);
}

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

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

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

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

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

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

.orange-6d40 {
  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;
}

.liquid_e7ab {
  flex: 1;
}

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

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

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

.dim_a1bc.pagination-59ba {
  background: var(--color-primary);
  color: white;
}

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

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

.east-b86c svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.up_b200 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.row-ec20[aria-expanded="true"] .element_east_abb7:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .liquid_e7ab {
    display: none;
  }
  
  .row-ec20 {
    display: flex;
  }
  
  .orange-6d40 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .up_b200,
  .pressed-a51a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .aside_red_2620 {
    position: relative;
  }
  
  .content_d8a3 {
    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;
  }
  
  .east-b86c[aria-expanded="true"] + .content_d8a3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .row-2691 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .summary_bright_5bce {
    gap: 8px;
  }
  
  .up_b200 {
    display: none;
  }
  
  .pressed-a51a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fast_6c80 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.summary_solid_522e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-4fdb {
  display: flex;
  gap: var(--space-sm);
}

.accordion-wide-4134 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .logo_smooth_1f7d {
    grid-template-columns: 1fr;
  }
  
  .static_63ed {
    font-size: 1.75rem;
  }
  
  .light-5593 {
    order: -1;
    max-width: 100%;
  }
  
  .item_fd7f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .static_63ed {
    font-size: 1.5rem;
  }
  
  .disabled_fa6d {
    font-size: 1rem;
  }
  
  .card_045a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .item_fd7f {
    max-width: 250px;
  }
}

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

.brown-97be {
  background: var(--color-primary);
  color: white;
}

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

.progress-huge-75fa {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.progress-huge-75fa:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cool-8b6a {
  list-style: none;
  counter-reset: toc-counter;
}

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

.cool-8b6a 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);
}

.cool-8b6a 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.description-silver-30a3 {
  padding: var(--space-xxl) 0;
}

.down-30e8 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow_77bb 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) {
  .header_white_7fec {
    grid-template-columns: 1fr;
  }
  
  .pressed-7f9c {
    font-size: 1.75rem;
  }
  
  .sort_42b5 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .pressed-7f9c {
    font-size: 1.5rem;
  }
  
  .sort_42b5 h3 {
    font-size: 1.375rem;
  }
  
  .sort_42b5 h4 {
    font-size: 1.125rem;
  }
}

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

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

.light-2ba4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.down-1e5f {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.hard-765d {
  flex-shrink: 0;
}

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

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

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

.inner-a458,
.card_10e9,
.silver_d4b1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.inner-a458 thead,
.card_10e9 thead {
  background: var(--color-primary);
  color: white;
}

.inner-a458 th,
.inner-a458 td,
.card_10e9 th,
.card_10e9 td,
.silver_d4b1 th,
.silver_d4b1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .inner-a458 th,
  .inner-a458 td,
  .card_10e9 th,
  .card_10e9 td,
  .silver_d4b1 th,
  .silver_d4b1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .inner-a458,
  .card_10e9,
  .silver_d4b1 {
    min-width: 600px;
  }
}

.inner-a458 th,
.card_10e9 th,
.silver_d4b1 th {
  font-weight: 600;
}

.inner-a458 tbody tr:hover,
.card_10e9 tbody tr:hover,
.silver_d4b1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.next_8e61 h4 {
  color: white;
}

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

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

.preview-8d0d:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.block-active-5095 {
  list-style: none;
  padding: 0;
}

.block-active-5095 li {
  padding: var(--space-xs) 0;
}

.panel_static_e5ad {
  color: #4caf50;
}

.simple-19a6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-smooth-1037 .wrapper-easy-f70a {
  width: 100%;
  background: white;
}

.outline-last-92bc .wrapper-easy-f70a {
  color: #667eea;
}

.active-solid-acd5 .wrapper-easy-f70a {
  color: #f5576c;
}

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

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

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

.text-selected-5925 {
  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);
}

.component-next-3042 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .component-next-3042 {
    padding: var(--space-md);
  }
  
  .gas_0f43 {
    padding: var(--space-md);
  }
  
  .grid_8607 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.thumbnail-87ce,
.highlight-8192,
.frame_f98f,
.dark-ff0c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.footer-83c6:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.mask-hot-70d8 {
  border-color: var(--color-success);
}

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

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

.mask-hot-70d8 .paragraph_02fd {
  background: #e8f5e9;
  color: var(--color-success);
}

.info-de13 .paragraph_02fd {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.shadow-5f5d {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.photo-0fa3 {
  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);
}

.motion-f749 {
  text-align: center;
}

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

.shadow-small-6e8d {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.image_pro_b27c .badge_full_1f6a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.focused-48b4 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.info-static-3d76 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.article-e8ff {
  border: 2px solid #4caf50;
}

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

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

.description-advanced-12d4 {
  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;
}

.hover-liquid-e42d {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.component-fb37 {
  text-align: right;
}

.component-fb37 .backdrop_32c9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.cold-3d0b {
  background: #e8f5e9;
  color: #2e7d32;
}

.description-0550 {
  background: #e3f2fd;
  color: #1565c0;
}

.preview-f91b {
  background: #fff3e0;
  color: #e65100;
}

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

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

.element-right-3305 {
  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);
}

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

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

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

.breadcrumb-solid-b978 strong {
  color: var(--color-primary);
}

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

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

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

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

.green-51f5 {
  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);
}

.green-51f5:hover {
  background: var(--color-bg-alt);
}

.message-84b0 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.green-51f5[aria-expanded="true"] .message-84b0 {
  transform: rotate(180deg);
}

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

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

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

.preview-wood-e721 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .primary-fixed-59ba {
    grid-template-columns: 1fr;
  }
}

.sort-left-0ea1,
.basic_369a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.sort-left-0ea1 h4,
.basic_369a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.sort-left-0ea1 ul,
.basic_369a ul {
  list-style: none;
  padding: 0;
}

.sort-left-0ea1 li,
.basic_369a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.photo_short_947f {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fluid_2d66 .label-4fdb {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.box_wood_7177 a:hover {
  color: white;
}

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

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

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

.carousel-bd7e a:hover {
  color: white;
}

.component-78fa {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .component-78fa {
    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;
  }
  
  .static_63ed {
    font-size: 2rem;
  }
  
  .pressed-7f9c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .logo_smooth_1f7d,
  .header_white_7fec {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .carousel_9206,
  .widget-5d2e,
  .description_brown_18ad,
  .frame-8571,
  .primary-fixed-59ba,
  .disabled_1a5a,
  .modal_fluid_efac,
  .chip_be85 {
    grid-template-columns: 1fr;
  }
  
  .alert_east_d70e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .description-silver-30a3 {
    padding: var(--space-lg) 0;
  }
  
  .cool-8b6a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .cool-8b6a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wrapper-easy-f70a {
    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;
  }
  
  .alert_east_d70e {
    grid-template-columns: 1fr;
  }
  
  .new-b184,
  .out_a3df,
  .component-copper-837c {
    flex-direction: column;
    width: 100%;
  }
  
  .basic_dff1,
  .full-fd83,
  .new-b184 .wrapper-easy-f70a,
  .out_a3df .wrapper-easy-f70a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .static_63ed {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pressed-7f9c {
    font-size: 1.375rem;
  }
  
  .nav-dim-7c2a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .overlay-complex-ddbc,
  .cold-d787,
  .disabled_f094,
  .button-736b,
  .bronze_b5e5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .grid-2df1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .box-purple-5760 {
    gap: var(--space-xs);
  }
  
  .summary_solid_522e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion_e0ab {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .image_pro_b27c {
    width: 150px;
    height: 150px;
  }
  
  .shadow-small-6e8d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .pagination-0863,
  .article-lower-3424,
  .new-b184,
  .tooltip-ad16,
  .sort_a58d,
  .carousel_e4ef,
  .row-ec20 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .description-silver-30a3 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 87c1 */
.promo-block-f0 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
