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

.dropdown_yellow_1b2c:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.module-5a8a):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. */
.module-5a8a,
header,
.surface_3601,
.input_8dbb,
.large_97b4,
.status-dd7e,
.text_huge_41d6,
.shade_focused_8c40,
.right_5fa7 {
  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
   ============================================ */
.module-5a8a {
  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);
}

.hot-8e27 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.disabled-3a45 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.liquid_5d0b {
  flex: 1;
}

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

.overlay_wood_dee8 {
  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_wood_dee8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

.main-iron-0a33 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.carousel_9bd5 svg {
  flex-shrink: 0;
}

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

.status-29fe: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);
}

.status-29fe svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .liquid_5d0b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .liquid_5d0b.pattern-wide-0161 {
    display: block;
    right: 0;
  }
  
  .item-left-b625 {
    flex-direction: column;
    gap: 0;
  }
  
  .overlay_wood_dee8 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .liquid_5d0b::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;
  }
  
  .liquid_5d0b.pattern-wide-0161::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .liquid_5d0b {
    display: none;
  }
  
  .simple-a6af {
    display: flex;
  }
  
  .picture_glass_b543 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .carousel_9bd5,
  .status-29fe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .grid_stone_e362 {
    position: relative;
  }
  
  .frame_a197 {
    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;
  }
  
  .grid_new_d119[aria-expanded="true"] + .frame_a197 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .message_d464 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .main-iron-0a33 {
    gap: 8px;
  }
  
  .carousel_9bd5 {
    display: none;
  }
  
  .status-29fe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .disabled-3a45 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.notice-5d9e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-5d9e svg {
  flex-shrink: 0;
}

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

.notice-5d9e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.banner-4e11 a {
  color: var(--color-primary);
  text-decoration: none;
}

.banner-4e11 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.shadow-complex-aa41 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.carousel-fbbf {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .dropdown_lite_788e {
    grid-template-columns: 1fr;
  }
  
  .button-5c81 {
    font-size: 1.75rem;
  }
  
  .media_black_097c {
    order: -1;
    max-width: 100%;
  }
  
  .carousel-fbbf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .button-5c81 {
    font-size: 1.5rem;
  }
  
  .grid-9ebf {
    font-size: 1rem;
  }
  
  .banner-4e11 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .carousel-fbbf {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.dark-6df3 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pink-2e1c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.pink-2e1c 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) {
  .warm_9128 {
    grid-template-columns: 1fr;
  }
  
  .slider-b4c7 {
    font-size: 1.75rem;
  }
  
  .out-cc79 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .slider-b4c7 {
    font-size: 1.5rem;
  }
  
  .out-cc79 h3 {
    font-size: 1.375rem;
  }
  
  .out-cc79 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.fast_d71c {
  flex-shrink: 0;
}

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

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

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

.old-4baf,
.block_08e3,
.wrapper-basic-e2f6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.old-4baf thead,
.block_08e3 thead {
  background: var(--color-primary);
  color: white;
}

.old-4baf th,
.old-4baf td,
.block_08e3 th,
.block_08e3 td,
.wrapper-basic-e2f6 th,
.wrapper-basic-e2f6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .old-4baf th,
  .old-4baf td,
  .block_08e3 th,
  .block_08e3 td,
  .wrapper-basic-e2f6 th,
  .wrapper-basic-e2f6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .old-4baf,
  .block_08e3,
  .wrapper-basic-e2f6 {
    min-width: 600px;
  }
}

.old-4baf th,
.block_08e3 th,
.wrapper-basic-e2f6 th {
  font-weight: 600;
}

.old-4baf tbody tr:hover,
.block_08e3 tbody tr:hover,
.wrapper-basic-e2f6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.mask-out-3cea h4 {
  color: white;
}

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

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

.notification-medium-006a:last-child {
  border-bottom: none;
}

.notification-medium-006a dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.notification-medium-006a dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.nav-left-2560:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.item_1509 {
  color: #4caf50;
}

.tooltip_08b9 {
  color: #ff9800;
}

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

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

.shade-left-2d88 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.bright-5fd1 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.header-9fa6 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.block_pro_9d34 .paragraph_5b18 {
  width: 100%;
  background: white;
}

.slow-ca0d .paragraph_5b18 {
  color: #667eea;
}

.content_lower_5bcd .paragraph_5b18 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.sidebar-pro-96d1 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

@media (max-width: 768px) {
  .column_lower_c38b {
    padding: var(--space-md);
  }
  
  .hidden_lower_94f8 {
    padding: var(--space-md);
  }
  
  .iron-69bf {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.mask-106c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.filter_112d,
.outline_606e,
.dim_fb90,
.old-98d9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.accordion-71d8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.sort_3df8 .up-7296 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tag_4c15 .up-7296 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.info-hard-5b6a {
  margin-top: var(--space-xxl);
}

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

.in-8b74 {
  text-align: center;
}

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

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

.badge-bright-c387 .first_a5ea {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-fluid-16b1 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.upper-fdd2 {
  border: 2px solid #4caf50;
}

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

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

.dropdown-short-74e7 {
  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;
}

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

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

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

.overlay-pressed-c660 {
  text-align: right;
}

.overlay-pressed-c660 .mask_hot_47d1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.badge-4f27 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.wood-7156 {
  background: #e3f2fd;
  color: #1565c0;
}

.selected-d62e {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.item-856e {
  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);
}

.item-856e:hover {
  background: var(--color-bg-alt);
}

.thumbnail-bronze-6f02 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.item-856e[aria-expanded="true"] .thumbnail-bronze-6f02 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.hard-453b {
  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);
}

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

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

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

.tertiary_orange_71c6,
.paragraph-outer-a08f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tertiary_orange_71c6 h4,
.paragraph-outer-a08f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tertiary_orange_71c6 ul,
.paragraph-outer-a08f ul {
  list-style: none;
  padding: 0;
}

.tertiary_orange_71c6 li,
.paragraph-outer-a08f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.container-selected-d080 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.pattern_4c4e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inner_a9da .left-e7d2 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.background_medium_6e28 a:hover {
  color: white;
}

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

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

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

.table_advanced_2bc6 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .south_6e25 {
    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;
  }
  
  .button-5c81 {
    font-size: 2rem;
  }
  
  .slider-b4c7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dropdown_lite_788e,
  .warm_9128 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent_pressed_f8b6,
  .brown_3859,
  .panel_top_816f,
  .paragraph-4052,
  .table-bright-d57a,
  .pattern-wood-b682,
  .breadcrumb-9b1c,
  .south-302f {
    grid-template-columns: 1fr;
  }
  
  .smooth_aac5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .text_huge_41d6 {
    padding: var(--space-lg) 0;
  }
  
  .detail_688f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .detail_688f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paragraph_5b18 {
    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;
  }
  
  .smooth_aac5 {
    grid-template-columns: 1fr;
  }
  
  .shadow-complex-aa41,
  .banner-fdbe,
  .dynamic_d990 {
    flex-direction: column;
    width: 100%;
  }
  
  .title_current_5b0e,
  .dark-6df3,
  .shadow-complex-aa41 .paragraph_5b18,
  .banner-fdbe .paragraph_5b18 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .button-5c81 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slider-b4c7 {
    font-size: 1.375rem;
  }
  
  .feature_active_af95 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .footer_99ea,
  .bottom-d017,
  .status-middle-9ec0,
  .bronze_cf07,
  .thick_e6b9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .layout_clean_fe60 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .nav_5246 {
    gap: var(--space-xs);
  }
  
  .notice-5d9e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .heading_8f0e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .badge-bright-c387 {
    width: 150px;
    height: 150px;
  }
  
  .tag-15e5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .module-5a8a,
  .surface_3601,
  .shadow-complex-aa41,
  .advanced-c59e,
  .shade_focused_8c40,
  .right_5fa7,
  .simple-a6af {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .text_huge_41d6 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 3fd4 */
.phantom-card-h3 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.1;
}
