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

.hard_af88:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.sort_fixed_84a6,
header,
.plasma_6007,
.footer-ebf1,
.thumbnail_last_e579,
.popup_large_ee5b,
.hero_cold_f668,
.block_center_dd5d,
.motion_d30b {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

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

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

.block_simple_66a7 {
  flex: 1;
}

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

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

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

.focused-fa16.fn-active-cc69 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.panel-hovered-46b7 {
  position: relative;
}

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

.green-d7bf svg {
  transition: transform 0.2s ease;
}

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

.alert-3e9f {
  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;
}

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

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

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

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

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

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

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

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

.pink_c6b0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.badge_static_66af[aria-expanded="true"] .menu-e0b3:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .block_simple_66a7 {
    display: none;
  }
  
  .badge_static_66af {
    display: flex;
  }
  
  .bright-9729 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pink_c6b0,
  .module-ea31 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .panel-hovered-46b7 {
    position: relative;
  }
  
  .alert-3e9f {
    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;
  }
  
  .green-d7bf[aria-expanded="true"] + .alert-3e9f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .main-bb81 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .mask-c2a8 {
    gap: 8px;
  }
  
  .pink_c6b0 {
    display: none;
  }
  
  .module-ea31 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .breadcrumb_current_d484 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.notice-motion-6753 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-motion-6753 svg {
  flex-shrink: 0;
}

.notice-motion-6753 a {
  color: var(--color-primary);
  text-decoration: none;
}

.notice-motion-6753 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.background-40c0 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.main-over-63d7 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .narrow_bf1a {
    grid-template-columns: 1fr;
  }
  
  .gallery_d54f {
    font-size: 1.75rem;
  }
  
  .hard-a0dc {
    order: -1;
    max-width: 100%;
  }
  
  .container_left_1c5e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .gallery_d54f {
    font-size: 1.5rem;
  }
  
  .banner_current_93c3 {
    font-size: 1rem;
  }
  
  .element_cb01 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .container_left_1c5e {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface-out-8596 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-bd8a 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) {
  .red_62f6 {
    grid-template-columns: 1fr;
  }
  
  .border-7bf6 {
    font-size: 1.75rem;
  }
  
  .feature_steel_0a1d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .border-7bf6 {
    font-size: 1.5rem;
  }
  
  .feature_steel_0a1d h3 {
    font-size: 1.375rem;
  }
  
  .feature_steel_0a1d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.block-west-3b43 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.menu_03e8 {
  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_de94 {
  flex-shrink: 0;
}

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

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

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

.footer-silver-26bb,
.rough-89fd,
.text_bright_958c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.footer-silver-26bb thead,
.rough-89fd thead {
  background: var(--color-primary);
  color: white;
}

.footer-silver-26bb th,
.footer-silver-26bb td,
.rough-89fd th,
.rough-89fd td,
.text_bright_958c th,
.text_bright_958c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-silver-26bb th,
  .footer-silver-26bb td,
  .rough-89fd th,
  .rough-89fd td,
  .text_bright_958c th,
  .text_bright_958c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .footer-silver-26bb,
  .rough-89fd,
  .text_bright_958c {
    min-width: 600px;
  }
}

.footer-silver-26bb th,
.rough-89fd th,
.text_bright_958c th {
  font-weight: 600;
}

.footer-silver-26bb tbody tr:hover,
.rough-89fd tbody tr:hover,
.text_bright_958c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.label-a3e2 h4 {
  color: white;
}

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

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

.tabs-80e7:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.header-3c64 {
  color: #4caf50;
}

.lite_3c11 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.complex-56be {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.mini-f2f2 .description_down_0583 {
  width: 100%;
  background: white;
}

.smooth_7e15 .description_down_0583 {
  color: #667eea;
}

.title-static-9cb1 .description_down_0583 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .summary_c452 {
    padding: var(--space-md);
  }
  
  .silver-2102 {
    padding: var(--space-md);
  }
  
  .notification_silver_9bf9 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.sidebar-275f li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.summary-fluid-3fac,
.content_6999,
.left-c9b2,
.motion_0036 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.content-762d:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.focused_761a .filter_warm_92c1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.purple-b43c .filter_warm_92c1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.hero-out-7a39 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.paragraph-1c6a {
  text-align: center;
}

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

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

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

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

.advanced-2f0e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-de74 {
  border: 2px solid #4caf50;
}

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

.panel-89f3 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.dropdown-stale-3d63 {
  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;
}

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

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

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

.full-9cf9 {
  text-align: right;
}

.full-9cf9 .header_d15d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.filter-3779 {
  background: #e8f5e9;
  color: #2e7d32;
}

.preview-fixed-f0b0 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.active-189a strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.notice-middle-7ae2 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.fluid_565d[aria-expanded="true"] .notice-middle-7ae2 {
  transform: rotate(180deg);
}

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

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

.accordion-pressed-7b07 ul,
.accordion-pressed-7b07 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.accordion-pressed-7b07 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma_367f ul,
.green_e30a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim-efc0 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wood_9b23 .inner-8824 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.tooltip_smooth_f918 a:hover {
  color: white;
}

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

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

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

.upper_391f a:hover {
  color: white;
}

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

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

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

.badge-55ad {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .description_complex_e7a1 {
    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;
  }
  
  .gallery_d54f {
    font-size: 2rem;
  }
  
  .border-7bf6 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .narrow_bf1a,
  .red_62f6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .texture-bright-4637,
  .footer-dcd3,
  .tabs_south_2c90,
  .photo-6b08,
  .element_b6ef,
  .widget-ad5f,
  .hover_9b36,
  .short_9f7a {
    grid-template-columns: 1fr;
  }
  
  .south-4b06 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero_cold_f668 {
    padding: var(--space-lg) 0;
  }
  
  .block_6fc4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .block_6fc4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .description_down_0583 {
    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;
  }
  
  .south-4b06 {
    grid-template-columns: 1fr;
  }
  
  .background-40c0,
  .filter-iron-5543,
  .liquid_1311 {
    flex-direction: column;
    width: 100%;
  }
  
  .slider_under_f7d8,
  .accent_bc72,
  .background-40c0 .description_down_0583,
  .filter-iron-5543 .description_down_0583 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .gallery_d54f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .border-7bf6 {
    font-size: 1.375rem;
  }
  
  .yellow-f823 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .filter_fresh_6dbf,
  .hidden-4950,
  .next_e8f4,
  .heading_motion_c6d6,
  .slider-white-077d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .table_fixed_5687 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pattern-4f7d {
    gap: var(--space-xs);
  }
  
  .notice-motion-6753 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .west_032f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .old_8036 {
    width: 150px;
    height: 150px;
  }
  
  .label-smooth-3250 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .sort_fixed_84a6,
  .plasma_6007,
  .background-40c0,
  .section_blue_ee64,
  .block_center_dd5d,
  .motion_d30b,
  .badge_static_66af {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero_cold_f668 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6401 */
.widget-item-f5 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
