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

.dark-613b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.notice-north-5e6b,
header,
.hover_out_d3aa,
.backdrop-b960,
.main_866a,
.active-smooth-74da,
.highlight-prev-d375,
.top-011e,
.carousel-stale-7027 {
  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
   ============================================ */
.notice-north-5e6b {
  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);
}

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

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

/* Scrolled state */
.notice-north-5e6b.wrapper-5ea3 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.fluid-3b87 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.article-b760 {
  flex: 1;
}

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

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

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

.detail_5a6f.fn-active-f4e3 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.up-6765 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.up-6765 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .article-b760 {
    display: none;
  }
  
  .icon_hot_cbdb {
    display: flex;
  }
  
  .disabled_west_df14 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .up-6765,
  .stone_b0ed {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .photo_f652 {
    position: relative;
  }
  
  .preview_bottom_670e {
    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;
  }
  
  .panel_c507[aria-expanded="true"] + .preview_bottom_670e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .link-b751 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .popup-9028 {
    gap: 8px;
  }
  
  .up-6765 {
    display: none;
  }
  
  .stone_b0ed {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fluid-3b87 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.pagination_bronze_de7d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-blue-ec0c {
  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;
}

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

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

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

.gradient-wood-b786 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.footer-db4d {
  position: relative;
  text-align: center;
}

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

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

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

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

.carousel-wood-0dc6 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .photo-bright-2b54 {
    grid-template-columns: 1fr;
  }
  
  .detail_up_5f61 {
    font-size: 1.75rem;
  }
  
  .simple_47c2 {
    order: -1;
    max-width: 100%;
  }
  
  .footer-db4d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail_up_5f61 {
    font-size: 1.5rem;
  }
  
  .input-over-5b74 {
    font-size: 1rem;
  }
  
  .accordion_plasma_2109 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .footer-db4d {
    max-width: 250px;
  }
}

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

.link-8e4e {
  background: var(--color-primary);
  color: white;
}

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

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

.button-blue-9831:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.border-661e {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer-d25e 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;
}

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

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

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

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

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

.tag-lower-8ed9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cold-085a {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.cold-085a 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) {
  .gallery-6a3c {
    grid-template-columns: 1fr;
  }
  
  .tag-lower-8ed9 {
    font-size: 1.75rem;
  }
  
  .clean_2101 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tag-lower-8ed9 {
    font-size: 1.5rem;
  }
  
  .clean_2101 h3 {
    font-size: 1.375rem;
  }
  
  .clean_2101 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.left-5312 {
  flex-shrink: 0;
}

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

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

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

.pro_bcff,
.aside-basic-a34f,
.background_aac0 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pro_bcff thead,
.aside-basic-a34f thead {
  background: var(--color-primary);
  color: white;
}

.pro_bcff th,
.pro_bcff td,
.aside-basic-a34f th,
.aside-basic-a34f td,
.background_aac0 th,
.background_aac0 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pro_bcff th,
  .pro_bcff td,
  .aside-basic-a34f th,
  .aside-basic-a34f td,
  .background_aac0 th,
  .background_aac0 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pro_bcff,
  .aside-basic-a34f,
  .background_aac0 {
    min-width: 600px;
  }
}

.pro_bcff th,
.aside-basic-a34f th,
.background_aac0 th {
  font-weight: 600;
}

.pro_bcff tbody tr:hover,
.aside-basic-a34f tbody tr:hover,
.background_aac0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.video_steel_cfa5 h4 {
  color: white;
}

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

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

.border-pressed-ef66:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.pattern-hard-d659 {
  list-style: none;
  padding: 0;
}

.pattern-hard-d659 li {
  padding: var(--space-xs) 0;
}

.clean_e56c {
  color: #4caf50;
}

.next_7301 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-4a37 .focus-a6f3 {
  width: 100%;
  background: white;
}

.advanced_fa0d .focus-a6f3 {
  color: #667eea;
}

.full-2f90 .focus-a6f3 {
  color: #f5576c;
}

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

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

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

.top-90ae {
  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);
}

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

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

@media (max-width: 768px) {
  .easy_5a26 {
    padding: var(--space-md);
  }
  
  .accent-3551 {
    padding: var(--space-md);
  }
  
  .thumbnail_519e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.filter-de31,
.simple-23c1,
.liquid_3d1b,
.sidebar_advanced_512b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.pro-0de2 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.logo-909b {
  border-color: var(--color-warning);
}

.row-smooth-b3c8 {
  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);
}

.title_5a3d .row-smooth-b3c8 {
  background: #e8f5e9;
  color: var(--color-success);
}

.logo-909b .row-smooth-b3c8 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-middle-7e6c {
  text-align: center;
}

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

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

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

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

.description-action-a322 p {
  margin-bottom: var(--space-md);
}

.link-silver-940b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.video-fast-ee2f {
  margin-bottom: var(--space-xl);
}

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

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

.green-64f9 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.description-clean-a337 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.frame_action_f57c {
  text-align: right;
}

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

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

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

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

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

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

.media-a42d {
  background: #e8f5e9;
  color: #2e7d32;
}

.hovered_c9d6 {
  background: #e3f2fd;
  color: #1565c0;
}

.popup-3b70 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-warm-fb9a {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.footer_smooth_c731[aria-expanded="true"] .list-warm-fb9a {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav_fluid_eb33 ul,
.row_bottom_e387 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.warm-1f05 {
  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);
}

.hero-huge-e2d7 {
  font-style: italic;
}

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

.green-955c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.shadow-3110 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.lite-47ac {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lite-47ac li {
  margin-bottom: var(--space-xs);
}

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

.lite-47ac a:hover {
  color: white;
}

.shade-left-d8cd {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.shade-left-d8cd a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.shade-left-d8cd a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.sort-next-3af0 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.sort-next-3af0 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.sort-next-3af0 a:hover {
  color: white;
}

.picture-full-1942 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .rough-51d9,
  .shadow-3110 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.shadow-61fe .list_soft_6f7e {
  color: #4caf50;
  font-size: 0.875rem;
}

.list-under-5ce2 {
  list-style: none;
  padding: 0;
}

.list-under-5ce2 li {
  margin-bottom: var(--space-xs);
}

.list-under-5ce2 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.list-under-5ce2 a:hover {
  color: white;
}

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

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

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

.wood_ea44 a:hover {
  color: white;
}

.picture-full-1942 {
  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);
}

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

.accordion-fixed-de3c a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.disabled_58b6 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .picture-full-1942 {
    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;
  }
  
  .detail_up_5f61 {
    font-size: 2rem;
  }
  
  .tag-lower-8ed9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .photo-bright-2b54,
  .gallery-6a3c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shadow_133a,
  .highlight-old-da53,
  .bottom-2298,
  .fluid_be17,
  .tall_656f,
  .black_20cc,
  .sort-warm-6881,
  .rough-51d9,
  .shadow-3110 {
    grid-template-columns: 1fr;
  }
  
  .tall_9710 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .highlight-prev-d375 {
    padding: var(--space-lg) 0;
  }
  
  .outer-d25e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .outer-d25e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focus-a6f3 {
    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;
  }
  
  .tall_9710 {
    grid-template-columns: 1fr;
  }
  
  .gradient-wood-b786,
  .pro_c44d,
  .carousel_green_d9ba {
    flex-direction: column;
    width: 100%;
  }
  
  .active_1e20,
  .border-661e,
  .gradient-wood-b786 .focus-a6f3,
  .pro_c44d .focus-a6f3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .detail_up_5f61 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tag-lower-8ed9 {
    font-size: 1.375rem;
  }
  
  .down_dd39 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .link-red-e1c8,
  .last_d24d,
  .box-70ae,
  .badge_24a7,
  .sidebar_gold_5297 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .secondary_2dd8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gradient_large_4771 {
    gap: var(--space-xs);
  }
  
  .pagination_bronze_de7d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .full_01b6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .rough_466f {
    width: 150px;
    height: 150px;
  }
  
  .outline_ef7e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notice-north-5e6b,
  .hover_out_d3aa,
  .gradient-wood-b786,
  .green-955c,
  .top-011e,
  .carousel-stale-7027,
  .icon_hot_cbdb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .highlight-prev-d375 {
    page-break-inside: avoid;
  }
}

/* css-noise: b9ac */
.phantom-card-u0 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
