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

.notification_00ef:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.focused-896e,
header,
.clean-21ac,
.thumbnail_red_ed67,
.bright_3f1b,
.border_320d,
.backdrop-6c1e,
.sidebar-5dc9,
.notice_fc5c {
  max-width: none;
}

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

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

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

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

.tooltip-6a32 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.full-4c40 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.focus-current-7fbe {
  flex: 1;
}

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

.overlay-19f4 {
  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);
}

.overlay-19f4:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.overlay-19f4.fn-active-afc3 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-7a90 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .focus-current-7fbe::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .focus-current-7fbe.border_liquid_4319 {
    display: block;
    right: 0;
  }
  
  .lower-e3d6 {
    flex-direction: column;
    gap: 0;
  }
  
  .overlay-19f4 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .focus-current-7fbe::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;
  }
  
  .focus-current-7fbe.border_liquid_4319::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .focus-current-7fbe {
    display: none;
  }
  
  .under_315c {
    display: flex;
  }
  
  .hovered_bd98 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .container-7a90,
  .shade_14c0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .shade_stone_6297 {
    position: relative;
  }
  
  .accordion_complex_c2d6 {
    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;
  }
  
  .gas_e13b[aria-expanded="true"] + .accordion_complex_c2d6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .info_d4e3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .soft_dbf0 {
    gap: 8px;
  }
  
  .container-7a90 {
    display: none;
  }
  
  .shade_14c0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .full-4c40 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.input-1307 svg {
  flex-shrink: 0;
}

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

.input-1307 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.section-soft-0fa1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.section-soft-0fa1 a:hover {
  text-decoration: underline;
}

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

.notification-wide-3f24 {
  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) {
  .notification-wide-3f24 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .notification-wide-3f24 {
    font-size: 1.5rem;
  }
}

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

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

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

.status-last-ba38 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.middle-7c34 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.photo-7286 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.logo-selected-714b {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.media-huge-2ab4 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .old-deed {
    grid-template-columns: 1fr;
  }
  
  .notification-wide-3f24 {
    font-size: 1.75rem;
  }
  
  .rough_8930 {
    order: -1;
    max-width: 100%;
  }
  
  .photo-7286 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notification-wide-3f24 {
    font-size: 1.5rem;
  }
  
  .logo_lite_beae {
    font-size: 1rem;
  }
  
  .section-soft-0fa1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .photo-7286 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.dim_23cf {
  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-9ae2 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.panel-basic-770c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.last-5a2a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-f24d 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;
}

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

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

.content-purple-bd4b {
  background: var(--color-bg-section);
}

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

.dirty-9bdd {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-821c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.outline-821c 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) {
  .south_1484 {
    grid-template-columns: 1fr;
  }
  
  .selected_4b8d {
    font-size: 1.75rem;
  }
  
  .gallery_yellow_0591 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.text_next_0801 {
  flex-shrink: 0;
}

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

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

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

.list_ecb0,
.shade-75b8,
.detail_a5c2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_ecb0 thead,
.shade-75b8 thead {
  background: var(--color-primary);
  color: white;
}

.list_ecb0 th,
.list_ecb0 td,
.shade-75b8 th,
.shade-75b8 td,
.detail_a5c2 th,
.detail_a5c2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_ecb0 th,
  .list_ecb0 td,
  .shade-75b8 th,
  .shade-75b8 td,
  .detail_a5c2 th,
  .detail_a5c2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_ecb0,
  .shade-75b8,
  .detail_a5c2 {
    min-width: 600px;
  }
}

.list_ecb0 th,
.shade-75b8 th,
.detail_a5c2 th {
  font-weight: 600;
}

.list_ecb0 tbody tr:hover,
.shade-75b8 tbody tr:hover,
.detail_a5c2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.accordion-plasma-38ae {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.shade-top-f439 h4 {
  color: white;
}

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

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

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

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

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

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

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

.focus-2c1d:hover {
  text-decoration: underline;
}

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

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

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

.content-c897 {
  font-weight: 600;
  color: white;
}

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

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

.component_plasma_a0a6 {
  color: #4caf50;
}

.media_slow_32b2 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .row-hovered-674b {
    grid-template-columns: 1fr;
  }
}

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

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

.carousel-865c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask_4a1e .dim_23cf {
  width: 100%;
  background: white;
}

.narrow_1c7c .dim_23cf {
  color: #667eea;
}

.aside_4426 .dim_23cf {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .breadcrumb_west_8922 {
    padding: var(--space-md);
  }
  
  .gradient-c467 {
    padding: var(--space-md);
  }
  
  .current-3562 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.modal-west-dc96,
.widget_b26c,
.picture_cdda,
.tooltip_fixed_6dab {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.active-8c3c {
  border-color: var(--color-success);
}

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

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

.active-8c3c .badge-bc04 {
  background: #e8f5e9;
  color: var(--color-success);
}

.shade_0aa9 .badge-bc04 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.article-static-2a62 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.button_next_ab98 {
  text-align: center;
}

.tooltip-97d2 {
  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);
}

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

.tooltip-97d2 .content-c897 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.text-hard-8d0e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.preview-dim-5fae {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.hard-91fe {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.tooltip-851d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.breadcrumb_3d48 {
  text-align: right;
}

.breadcrumb_3d48 .label-7f3b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.black-47d6 {
  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);
}

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

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

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

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

.dropdown-rough-82f8 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.secondary-8cde {
  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);
}

.secondary-8cde:hover {
  background: var(--color-bg-alt);
}

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

.secondary-8cde[aria-expanded="true"] .outline_active_bdd4 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.module_inner_2167,
.shadow-900f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.module_inner_2167 h4,
.shadow-900f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.module_inner_2167 ul,
.shadow-900f ul {
  list-style: none;
  padding: 0;
}

.module_inner_2167 li,
.shadow-900f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.wrapper_dirty_cba6 {
  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-under-b103 {
  font-style: italic;
}

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

.alert-active-347b {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-65d9 .status-last-ba38 {
  color: #4caf50;
  font-size: 0.875rem;
}

.selected-b636 {
  list-style: none;
  padding: 0;
}

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

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

.selected-b636 a:hover {
  color: white;
}

.thumbnail-middle-dfed {
  list-style: none;
  padding: 0;
}

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

.thumbnail-middle-dfed a {
  color: #b0b0b0;
  text-decoration: none;
}

.thumbnail-middle-dfed a:hover {
  color: white;
}

.info-77c4 {
  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);
}

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

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

.dim-131f {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.logo-860f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .info-77c4 {
    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;
  }
  
  .notification-wide-3f24 {
    font-size: 2rem;
  }
  
  .selected_4b8d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .old-deed,
  .south_1484 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .row-hovered-674b,
  .simple_73da,
  .footer-5008,
  .logo_in_8983,
  .background_easy_cb1f,
  .sort_939d,
  .fluid-3ca8,
  .large-5d33 {
    grid-template-columns: 1fr;
  }
  
  .texture_42d2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .backdrop-6c1e {
    padding: var(--space-lg) 0;
  }
  
  .secondary-f24d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .secondary-f24d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .dim_23cf {
    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;
  }
  
  .texture_42d2 {
    grid-template-columns: 1fr;
  }
  
  .middle-7c34,
  .main-9f3a,
  .top_61a9 {
    flex-direction: column;
    width: 100%;
  }
  
  .panel-basic-770c,
  .last-5a2a,
  .middle-7c34 .dim_23cf,
  .main-9f3a .dim_23cf {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notification-wide-3f24 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .selected_4b8d {
    font-size: 1.375rem;
  }
  
  .column_3f25 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .component_1644,
  .form_gold_385f,
  .out_2843,
  .next-c7a2,
  .layout_brown_f4d4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .alert_smooth_892a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .summary-7722 {
    gap: var(--space-xs);
  }
  
  .input-1307 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .brown_48a8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tooltip-97d2 {
    width: 150px;
    height: 150px;
  }
  
  .mask_0226 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focused-896e,
  .clean-21ac,
  .middle-7c34,
  .alert-active-347b,
  .sidebar-5dc9,
  .notice_fc5c,
  .under_315c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .backdrop-6c1e {
    page-break-inside: avoid;
  }
}

/* css-noise: f2fe */
.widget-item-r4 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
