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

.in-3e53:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.carousel_f310):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. */
.carousel_f310,
header,
.element-fluid-b37c,
.input_0963,
.popup_b24c,
.status_99bd,
.tooltip_blue_1525,
.preview-up-7726,
.widget-ee1f {
  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
   ============================================ */
.carousel_f310 {
  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);
}

.video-west-c783 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.border_b980 {
  flex: 1;
}

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

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

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

.mini-6957.upper_5553 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.full-d0fc {
  position: relative;
}

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

.module-wood-4f6a svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.notification_7892 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.grid-lower-b5f6[aria-expanded="true"] .overlay_b007:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .border_b980 {
    display: none;
  }
  
  .grid-lower-b5f6 {
    display: flex;
  }
  
  .label_easy_1c4f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .notification_7892,
  .dim_bff4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .full-d0fc {
    position: relative;
  }
  
  .grid_large_81b5 {
    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;
  }
  
  .module-wood-4f6a[aria-expanded="true"] + .grid_large_81b5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .surface_2e82 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

.card_8cfe svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.action-7f33 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.container-middle-34ca {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.container-middle-34ca strong {
  font-weight: 600;
  color: var(--color-text);
}

.container-middle-34ca span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.thumbnail-next-5fdd {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .focus-4efa {
    grid-template-columns: 1fr;
  }
  
  .steel-2528 {
    font-size: 1.75rem;
  }
  
  .thumbnail-next-5fdd {
    order: -1;
    max-width: 100%;
  }
  
  .hover_large_7a51 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .steel-2528 {
    font-size: 1.5rem;
  }
  
  .left_142e {
    font-size: 1rem;
  }
  
  .backdrop_0de7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hover_large_7a51 {
    max-width: 250px;
  }
}

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

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

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

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

.footer-98ac:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.center-86b0 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.background-orange-9797 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.secondary-prev-538b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.tertiary-yellow-5a0f {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lite-5168 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) {
  .silver-9dd8 {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-1507 {
    font-size: 1.75rem;
  }
  
  .button-d70d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .thumbnail-1507 {
    font-size: 1.5rem;
  }
  
  .button-d70d h3 {
    font-size: 1.375rem;
  }
  
  .button-d70d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.yellow-7ec9 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.wide-700b {
  flex-shrink: 0;
}

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

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

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

.black-19e5,
.logo-clean-4a30,
.surface_cb9d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.black-19e5 thead,
.logo-clean-4a30 thead {
  background: var(--color-primary);
  color: white;
}

.black-19e5 th,
.black-19e5 td,
.logo-clean-4a30 th,
.logo-clean-4a30 td,
.surface_cb9d th,
.surface_cb9d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .black-19e5 th,
  .black-19e5 td,
  .logo-clean-4a30 th,
  .logo-clean-4a30 td,
  .surface_cb9d th,
  .surface_cb9d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .black-19e5,
  .logo-clean-4a30,
  .surface_cb9d {
    min-width: 600px;
  }
}

.black-19e5 th,
.logo-clean-4a30 th,
.surface_cb9d th {
  font-weight: 600;
}

.black-19e5 tbody tr:hover,
.logo-clean-4a30 tbody tr:hover,
.surface_cb9d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.basic_1a00 h4 {
  color: white;
}

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

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

.container-6ac4:last-child {
  border-bottom: none;
}

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

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

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

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

.bright-fbb5:hover {
  text-decoration: underline;
}

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

.dropdown-1ba4 {
  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);
}

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

.surface-bright-4909 {
  font-weight: 600;
  color: white;
}

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

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

.gallery_f21d {
  color: #4caf50;
}

.badge_glass_dc54 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .pattern-stone-39a6 {
    grid-template-columns: 1fr;
  }
}

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

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

.chip-wide-7429 {
  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_7bbf h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

.border-stone-cba3 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.mask-2e1e .paragraph_huge_e4fd {
  width: 100%;
  background: white;
}

.button-thick-2849 .paragraph_huge_e4fd {
  color: #667eea;
}

.content-26cc .paragraph_huge_e4fd {
  color: #f5576c;
}

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

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

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

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

.media-steel-9682 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .media-steel-9682 {
    padding: var(--space-md);
  }
  
  .module_4ead {
    padding: var(--space-md);
  }
  
  .notice-9fa7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.layout_8be5,
.up_6ee2,
.info_complex_1bd6,
.lite_f27a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.gallery-pro-34a3:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.list-wood-9ef8 {
  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);
}

.summary_action_fc86 .list-wood-9ef8 {
  background: #e8f5e9;
  color: var(--color-success);
}

.logo_soft_d239 .list-wood-9ef8 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.small-7a87 {
  margin-top: var(--space-xxl);
}

.sidebar-fluid-3832 {
  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);
}

.component-2dd9 {
  text-align: center;
}

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

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

.link_light_a8ee .surface-bright-4909 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.component-8cfa p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.motion_a77c {
  text-align: right;
}

.motion_a77c .popup-cf7b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.tiny-2073 {
  background: #e8f5e9;
  color: #2e7d32;
}

.wrapper-out-4f47 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.wrapper-up-2e8e {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

.feature-21a1 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.pattern-6ef3 {
  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);
}

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

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

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

.element_hard_b2a8,
.bottom-1d11 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.element_hard_b2a8 h4,
.bottom-1d11 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.element_hard_b2a8 ul,
.bottom-1d11 ul {
  list-style: none;
  padding: 0;
}

.element_hard_b2a8 li,
.bottom-1d11 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tag_clean_dc97 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.logo-east-58eb {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.wide-d452 .liquid_6019 {
  color: #4caf50;
  font-size: 0.875rem;
}

.warm-d8d6 {
  list-style: none;
  padding: 0;
}

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

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

.warm-d8d6 a:hover {
  color: white;
}

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

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

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

.icon_ceaa a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .summary_e990 {
    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;
  }
  
  .steel-2528 {
    font-size: 2rem;
  }
  
  .thumbnail-1507 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .focus-4efa,
  .silver-9dd8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pattern-stone-39a6,
  .overlay-light-d67c,
  .breadcrumb_7097,
  .column-wood-2936,
  .header-simple-da76,
  .east_6dc4,
  .south-8034,
  .row_1b49 {
    grid-template-columns: 1fr;
  }
  
  .active_ae5d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tooltip_blue_1525 {
    padding: var(--space-lg) 0;
  }
  
  .modal_lower_faf5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .modal_lower_faf5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paragraph_huge_e4fd {
    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;
  }
  
  .active_ae5d {
    grid-template-columns: 1fr;
  }
  
  .feature_first_abed,
  .chip_thick_042f,
  .item-c9df {
    flex-direction: column;
    width: 100%;
  }
  
  .center-86b0,
  .background-orange-9797,
  .feature_first_abed .paragraph_huge_e4fd,
  .chip_thick_042f .paragraph_huge_e4fd {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .steel-2528 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .thumbnail-1507 {
    font-size: 1.375rem;
  }
  
  .feature-d9e7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .accent_59f3,
  .last_7bbf,
  .hard_a41a,
  .primary_f7bd,
  .section_pink_ed77 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .active-c184 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .accent-b815 {
    gap: var(--space-xs);
  }
  
  .card_8cfe {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .dropdown-1ba4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .link_light_a8ee {
    width: 150px;
    height: 150px;
  }
  
  .photo_cc7f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .carousel_f310,
  .element-fluid-b37c,
  .feature_first_abed,
  .lite-c3a2,
  .preview-up-7726,
  .widget-ee1f,
  .grid-lower-b5f6 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tooltip_blue_1525 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 01d9 */
.phantom-card-i0 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.3;
}
