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

.footer-6162:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.hover-last-8ac1):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. */
.hover-last-8ac1,
header,
.aside-3035,
.texture-middle-8862,
.hero-green-b9e6,
.banner-c9d9,
.footer_complex_a542,
.over_55db,
.grid_slow_c3ba {
  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
   ============================================ */
.hover-last-8ac1 {
  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);
}

.banner-short-052d {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.hover-last-8ac1.inner-5b27 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.button_pink_0a48 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.input-364a {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tall-e219 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .button_pink_0a48 {
    display: none;
  }
  
  .media_b7d0 {
    display: flex;
  }
  
  .light_d045 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tall-e219,
  .up_bee6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .input-364a {
    position: relative;
  }
  
  .shade_21b6 {
    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;
  }
  
  .texture_medium_fd1c[aria-expanded="true"] + .shade_21b6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .section-2725 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .focus-ffa9 {
    gap: 8px;
  }
  
  .tall-e219 {
    display: none;
  }
  
  .up_bee6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dirty_12c5 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.bronze-5a45 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bronze-5a45 svg {
  flex-shrink: 0;
}

.bronze-5a45 a {
  color: var(--color-primary);
  text-decoration: none;
}

.bronze-5a45 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.status-3409 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.avatar-middle-1259 {
  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;
}

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

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

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

.backdrop-21a7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .short_0767 {
    grid-template-columns: 1fr;
  }
  
  .lite-90cd {
    font-size: 1.75rem;
  }
  
  .orange_0762 {
    order: -1;
    max-width: 100%;
  }
  
  .description_glass_bffd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .lite-90cd {
    font-size: 1.5rem;
  }
  
  .pattern-2bfb {
    font-size: 1rem;
  }
  
  .status-3409 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .description_glass_bffd {
    max-width: 250px;
  }
}

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

.medium-35a9 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-next-e3c8 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.sort-next-e3c8 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);
}

.sort-next-e3c8 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main_complex_8560 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) {
  .alert_832c {
    grid-template-columns: 1fr;
  }
  
  .secondary_left_e750 {
    font-size: 1.75rem;
  }
  
  .pattern_821d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .secondary_left_e750 {
    font-size: 1.5rem;
  }
  
  .pattern_821d h3 {
    font-size: 1.375rem;
  }
  
  .pattern_821d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.mask-tall-9793 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.secondary-steel-8eec {
  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;
}

.element-38a0 {
  flex-shrink: 0;
}

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

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

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

.layout_da03,
.outer_a85d,
.main_4bc9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.layout_da03 thead,
.outer_a85d thead {
  background: var(--color-primary);
  color: white;
}

.layout_da03 th,
.layout_da03 td,
.outer_a85d th,
.outer_a85d td,
.main_4bc9 th,
.main_4bc9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .layout_da03 th,
  .layout_da03 td,
  .outer_a85d th,
  .outer_a85d td,
  .main_4bc9 th,
  .main_4bc9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .layout_da03,
  .outer_a85d,
  .main_4bc9 {
    min-width: 600px;
  }
}

.layout_da03 th,
.outer_a85d th,
.main_4bc9 th {
  font-weight: 600;
}

.layout_da03 tbody tr:hover,
.outer_a85d tbody tr:hover,
.main_4bc9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.warm_10d4 h4 {
  color: white;
}

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

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

.image-03c4:last-child {
  border-bottom: none;
}

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

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

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

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

.wood-9b10:hover {
  text-decoration: underline;
}

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

.right-71c6 {
  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);
}

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

.element-north-9eb1 {
  font-weight: 600;
  color: white;
}

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

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

.focused_d323 {
  color: #4caf50;
}

.down-d557 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.footer-56b4 {
  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;
}

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

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

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

.element-north-9eb1 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

.grid-green-45e3 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort_complex_2d81 .card-gas-f3f0 {
  width: 100%;
  background: white;
}

.thumbnail_mini_127c .card-gas-f3f0 {
  color: #667eea;
}

.button-cd5b .card-gas-f3f0 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

.photo-inner-d069 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.modal_fast_55c1,
.grid-red-cf91,
.lower-4921,
.box-smooth-2781 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.medium-6b54:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.shade-84cc {
  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);
}

.highlight_lite_4b3f .shade-84cc {
  background: #e8f5e9;
  color: var(--color-success);
}

.main_b161 .shade-84cc {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_3959 {
  text-align: center;
}

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

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

.surface_0df5 .element-north-9eb1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.progress-fixed-64dd {
  margin-bottom: var(--space-xl);
}

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

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

.pressed-327a {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort_ad55 {
  text-align: right;
}

.sort_ad55 .primary-3f6e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.form-d126 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent_68db[aria-expanded="true"] .slow_fd44 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside_63d3,
.light-60ba {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.aside_63d3 h4,
.light-60ba h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.aside_63d3 ul,
.light-60ba ul {
  list-style: none;
  padding: 0;
}

.aside_63d3 li,
.light-60ba li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.picture-old-b412 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.aside-thick-8ec6 {
  font-style: italic;
}

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

.status-fresh-5116 {
  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;
}

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

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

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

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

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

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

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

.gallery-prev-a154 {
  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);
}

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

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

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

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

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

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

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

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

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

.panel-liquid-10d2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.panel-liquid-10d2 .full_ef37 {
  color: #4caf50;
  font-size: 0.875rem;
}

.shadow-bright-366c {
  list-style: none;
  padding: 0;
}

.shadow-bright-366c li {
  margin-bottom: var(--space-xs);
}

.shadow-bright-366c a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.shadow-bright-366c a:hover {
  color: white;
}

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

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

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

.in_6144 a:hover {
  color: white;
}

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

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

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

.info-up-23a7 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.old-49ca:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .under-5382 {
    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;
  }
  
  .lite-90cd {
    font-size: 2rem;
  }
  
  .secondary_left_e750 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .short_0767,
  .alert_832c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .light-4b3e,
  .thick-4f3e,
  .border_rough_8ec6,
  .complex_ff61,
  .photo_hot_14cd,
  .modal-7367,
  .container_89b6,
  .dynamic_e4cb {
    grid-template-columns: 1fr;
  }
  
  .image-e739 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .footer_complex_a542 {
    padding: var(--space-lg) 0;
  }
  
  .sort-next-e3c8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .sort-next-e3c8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .card-gas-f3f0 {
    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;
  }
  
  .image-e739 {
    grid-template-columns: 1fr;
  }
  
  .backdrop-21a7,
  .pink-78ee,
  .caption_fast_85b3 {
    flex-direction: column;
    width: 100%;
  }
  
  .summary_basic_4eac,
  .aside-40e2,
  .backdrop-21a7 .card-gas-f3f0,
  .pink-78ee .card-gas-f3f0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .lite-90cd {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .secondary_left_e750 {
    font-size: 1.375rem;
  }
  
  .component_outer_bf49 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .filter_34fc,
  .tag-fa03,
  .overlay-cfcb,
  .banner_stone_5052,
  .clean-fd60 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .paper_17e4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .box-north-59d5 {
    gap: var(--space-xs);
  }
  
  .bronze-5a45 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .right-71c6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .surface_0df5 {
    width: 150px;
    height: 150px;
  }
  
  .input_ac27 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hover-last-8ac1,
  .aside-3035,
  .backdrop-21a7,
  .status-fresh-5116,
  .over_55db,
  .grid_slow_c3ba,
  .media_b7d0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .footer_complex_a542 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e8c3 */
.widget-item-u7 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
