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

.copper-88ea:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.message_cold_0eb0):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. */
.message_cold_0eb0,
header,
.frame-simple-8a8d,
.middle_1d38,
.picture_easy_6721,
.text-green-4945,
.tag_prev_dac1,
.disabled-8892,
.left-d752 {
  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
   ============================================ */
.message_cold_0eb0 {
  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);
}

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

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

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

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

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

.north-341b img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-outer-16f2 {
  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;
}

.message_69ff {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.input-4e1b {
  position: relative;
}

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

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

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

.shade-6a52 {
  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-4e1b:hover .shade-6a52 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

.disabled-active-868f {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.dynamic_40c8 svg {
  flex-shrink: 0;
}

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

.tertiary-gold-6693: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);
}

.tertiary-gold-6693 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .message_69ff {
    display: none;
  }
  
  .article_wood_c7f4 {
    display: flex;
  }
  
  .logo-outer-16f2 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dynamic_40c8,
  .tertiary-gold-6693 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .input-4e1b {
    position: relative;
  }
  
  .shade-6a52 {
    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;
  }
  
  .aside_under_1420[aria-expanded="true"] + .shade-6a52 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .module-outer-5674 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .disabled-active-868f {
    gap: 8px;
  }
  
  .dynamic_40c8 {
    display: none;
  }
  
  .tertiary-gold-6693 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .north-341b img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .tertiary-gold-6693 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .tertiary-gold-6693 svg {
    width: 14px;
    height: 14px;
  }
  
  .secondary-5550 {
    gap: var(--space-sm);
  }
}

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

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

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

.thumbnail_hard_8b60 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-copper-dd69 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.secondary-copper-c901 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .header_fbe0 {
    grid-template-columns: 1fr;
  }
  
  .left_f8d8 {
    font-size: 1.75rem;
  }
  
  .liquid_2bb9 {
    order: -1;
    max-width: 100%;
  }
  
  .secondary-copper-c901 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .left_f8d8 {
    font-size: 1.5rem;
  }
  
  .summary-motion-eaf8 {
    font-size: 1rem;
  }
  
  .notification_new_770c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .secondary-copper-c901 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-short-828b {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.highlight-8797 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;
}

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

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

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

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

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

.description_846b {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

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

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

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

.pattern-7a8c img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.pattern-7a8c 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-7a8c h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

.pattern-7a8c strong {
  font-weight: 600;
  color: var(--color-text);
}

.pattern-7a8c a {
  color: var(--color-primary);
  text-decoration: underline;
}

.pattern-7a8c a:hover {
  color: var(--color-primary-dark);
}

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

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

.lower-0a80 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) {
  .glass_c440 {
    grid-template-columns: 1fr;
  }
  
  .description_846b {
    font-size: 1.75rem;
  }
  
  .pattern-7a8c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .description_846b {
    font-size: 1.5rem;
  }
  
  .pattern-7a8c h3 {
    font-size: 1.375rem;
  }
  
  .pattern-7a8c h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.list_glass_9203 {
  flex-shrink: 0;
}

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

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

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

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

.thick_df03 thead,
.box_4bec thead {
  background: var(--color-primary);
  color: white;
}

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

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

.thick_df03 th,
.box_4bec th,
.gallery_complex_b0ed th {
  font-weight: 600;
}

.thick_df03 tbody tr:hover,
.box_4bec tbody tr:hover,
.gallery_complex_b0ed tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.mask_9f1c h4 {
  color: white;
}

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

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

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

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

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

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

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

.pattern-7dd2:hover {
  text-decoration: underline;
}

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

.detail-short-a3d2 {
  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);
}

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

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

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

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

.component_ea3d {
  color: #4caf50;
}

.picture_fad6 {
  color: #ff9800;
}

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

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

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

.pagination-59db {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.silver_2923 .info-03f4 {
  width: 100%;
  background: white;
}

.mini-fcb6 .info-03f4 {
  color: #667eea;
}

.link-old-4e4a .info-03f4 {
  color: #f5576c;
}

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

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

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

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

.full-6e25 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .full-6e25 {
    padding: var(--space-md);
  }
  
  .progress_e59a {
    padding: var(--space-md);
  }
  
  .active_6d76 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.gradient-fixed-082c,
.disabled-hard-6f47,
.tag-724a,
.wide_1834 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.lite-364f {
  border-color: var(--color-success);
}

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

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

.lite-364f .notice_last_b61a {
  background: #e8f5e9;
  color: var(--color-success);
}

.link_6847 .notice_last_b61a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.next-362b {
  margin-top: var(--space-xxl);
}

.feature-medium-9c3c {
  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);
}

.dropdown-f48e {
  text-align: center;
}

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

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

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

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

.fast-f238 p {
  margin-bottom: var(--space-md);
}

.section-selected-57e5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .feature-medium-9c3c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-tiny-f838 {
  text-align: right;
}

.link-tiny-f838 .hidden_fedf {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.list-white-731c {
  background: #e3f2fd;
  color: #1565c0;
}

.card-narrow-b2e4 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.center-40d7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.slider-fast-c8b0 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.border_lower_6655[aria-expanded="true"] .slider-fast-c8b0 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.title-motion-3d5e {
  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);
}

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

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

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

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

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

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

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

.footer_c131 ul,
.hover_fixed_4ba5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.large-f9f9 {
  font-style: italic;
}

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

.gallery-5eb7 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter_focused_6b86 .purple_a9ef {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.block-b355 a:hover {
  color: white;
}

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

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

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

.primary_blue_b528 a:hover {
  color: white;
}

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

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

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

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

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

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

.message-purple-f496:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .card-e0c1 {
    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;
  }
  
  .left_f8d8 {
    font-size: 2rem;
  }
  
  .description_846b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .header_fbe0,
  .glass_c440 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .title_fixed_2dce,
  .footer_hard_ca35,
  .dark-f350,
  .grid-white-ebf4,
  .steel_6ded,
  .link-inner-62d9,
  .hovered_aab3,
  .pagination_fc93 {
    grid-template-columns: 1fr;
  }
  
  .disabled-tiny-bde3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tag_prev_dac1 {
    padding: var(--space-lg) 0;
  }
  
  .highlight-8797 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .highlight-8797 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .info-03f4 {
    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;
  }
  
  .disabled-tiny-bde3 {
    grid-template-columns: 1fr;
  }
  
  .paragraph-copper-dd69,
  .overlay-e122,
  .detail_083b {
    flex-direction: column;
    width: 100%;
  }
  
  .dropdown_06d0,
  .shadow_rough_1b18,
  .paragraph-copper-dd69 .info-03f4,
  .overlay-e122 .info-03f4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .left_f8d8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .description_846b {
    font-size: 1.375rem;
  }
  
  .active-b558 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .highlight_warm_a31a,
  .wrapper-short-fff3,
  .right-7f5e,
  .layout_21de,
  .outline_short_c932 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .accordion_92a8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focus_purple_bdc5 {
    gap: var(--space-xs);
  }
  
  .thumbnail_hard_8b60 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .detail-short-a3d2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .logo_854f {
    width: 150px;
    height: 150px;
  }
  
  .steel_ed45 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .message_cold_0eb0,
  .frame-simple-8a8d,
  .paragraph-copper-dd69,
  .gallery-5eb7,
  .disabled-8892,
  .left-d752,
  .article_wood_c7f4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tag_prev_dac1 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 2bdf */
.phantom-card-k8 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
