/* ============================================
   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)
   ============================================ */
.box_4217 {
  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;
}

.box_4217:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.lower_0fdb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .lower_0fdb {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .lower_0fdb {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.main-98a1):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.main-98a1,
header,
.primary_glass_8f34,
.menu_bottom_1b05,
.input-upper-4711,
.list-505c,
.primary-east-ce13,
.down_c0c0,
.backdrop-static-6858 {
  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
   ============================================ */
.main-98a1 {
  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);
}

.item_c413 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.main-98a1.aside-bdf5 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.tiny_2fe7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.header_8de5 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.blue-167e img {
  height: 36px;
  width: auto;
  display: block;
}

.last-a31d {
  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;
}

.clean_b188 {
  flex: 1;
}

.gradient-85e0 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.basic-f1e1 {
  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);
}

.basic-f1e1:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.basic-f1e1.carousel-c70e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.row_6c4e {
  position: relative;
}

.row_bbc5 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.row_bbc5 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.row_6c4e:hover .row_bbc5 svg,
.row_bbc5[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.notice-right-3dd3 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.row_6c4e:hover .notice-right-3dd3 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.notice-right-3dd3::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.background_light_408e {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.background_light_408e:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.background_light_408e[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.message_7944 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.module-bb0e {
  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;
}

.module-bb0e:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.module-bb0e svg {
  flex-shrink: 0;
}

/* Header Download Button */
.tag-85ef {
  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;
}

.tag-85ef: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);
}

.tag-85ef svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.heading-white-e7df {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.gallery-bottom-3f34 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.heading-white-e7df[aria-expanded="true"] .gallery-bottom-3f34:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.heading-white-e7df[aria-expanded="true"] .gallery-bottom-3f34:nth-child(2) {
  opacity: 0;
}

.heading-white-e7df[aria-expanded="true"] .gallery-bottom-3f34:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .clean_b188 {
    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 */
  }

  .clean_b188::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .clean_b188.breadcrumb-down-532c {
    display: block;
    right: 0;
  }
  
  .gradient-85e0 {
    flex-direction: column;
    gap: 0;
  }
  
  .basic-f1e1 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .clean_b188::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;
  }
  
  .clean_b188.breadcrumb-down-532c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .clean_b188 {
    display: none;
  }
  
  .heading-white-e7df {
    display: flex;
  }
  
  .last-a31d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .module-bb0e,
  .tag-85ef {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .row_6c4e {
    position: relative;
  }
  
  .notice-right-3dd3 {
    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;
  }
  
  .row_bbc5[aria-expanded="true"] + .notice-right-3dd3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .background_light_408e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .message_7944 {
    gap: 8px;
  }
  
  .module-bb0e {
    display: none;
  }
  
  .tag-85ef {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .blue-167e img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .tag-85ef {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .tag-85ef svg {
    width: 14px;
    height: 14px;
  }
  
  .tiny_2fe7 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.primary_glass_8f34 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.avatar-704c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hidden-full-dc00 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hidden-full-dc00 svg {
  flex-shrink: 0;
}

.hidden-full-dc00 a {
  color: var(--color-primary);
  text-decoration: none;
}

.hidden-full-dc00 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .avatar-704c {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.menu_bottom_1b05 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.overlay_east_d969 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .overlay_east_d969 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.heading_2809 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.heading_2809 a {
  color: var(--color-primary);
  text-decoration: none;
}

.heading_2809 a:hover {
  text-decoration: underline;
}

.info_current_f0ae {
  color: var(--color-text-lighter);
}

.grid-selected-2f8f {
  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) {
  .grid-selected-2f8f {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .grid-selected-2f8f {
    font-size: 1.5rem;
  }
}

.link_5f81 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.row-f6b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .row-f6b8 {
    grid-template-columns: 1fr;
  }
}

.breadcrumb-left-0b04 {
  display: flex;
  gap: var(--space-sm);
}

.container-44a6 {
  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;
}

.row-out-4e8e {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.row-out-4e8e strong {
  font-weight: 600;
  color: var(--color-text);
}

.row-out-4e8e span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.south-a33c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.active-narrow-c5ed {
  display: flex;
  align-items: center;
  justify-content: center;
}

.purple-c0c3 {
  position: relative;
  text-align: center;
}

.purple-c0c3 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.chip-pink-82bb {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.light-7379 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.nav_5c72 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.pro-6a42 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.summary-6d3e {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.text_1dfa {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .overlay_east_d969 {
    grid-template-columns: 1fr;
  }
  
  .grid-selected-2f8f {
    font-size: 1.75rem;
  }
  
  .active-narrow-c5ed {
    order: -1;
    max-width: 100%;
  }
  
  .purple-c0c3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .grid-selected-2f8f {
    font-size: 1.5rem;
  }
  
  .link_5f81 {
    font-size: 1rem;
  }
  
  .heading_2809 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .purple-c0c3 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.notice-active-dd6f {
  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;
}

.main-d013 {
  background: var(--color-primary);
  color: white;
}

.main-d013:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.border-bright-5355 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.border-bright-5355:hover {
  background: var(--color-primary);
  color: white;
}

.breadcrumb-21ab {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.breadcrumb-21ab:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.image-orange-cec2 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.accent_6e4e {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.input-upper-4711 {
  padding: var(--space-xl) 0;
  background: white;
}

.carousel_ddbe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.gradient-prev-7085 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.gradient-prev-7085:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-fixed-d7f1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.column-inner-b027 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.alert-prev-3307 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.list-505c {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.component_narrow_278a {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hot_ebd6 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.bright_197b {
  list-style: none;
  counter-reset: toc-counter;
}

.bright_197b li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.bright_197b 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);
}

.bright_197b 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;
}

.bright_197b li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.primary-east-ce13 {
  padding: var(--space-xxl) 0;
}

.dirty_4228 {
  background: var(--color-bg-section);
}

.north_d52a {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.overlay_a433 {
  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);
}

.gallery_e17a {
  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);
}

.container-active-5a0e {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.green_6d25 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .green_6d25 {
    grid-template-columns: 1fr 300px;
  }
}

.east_59f6 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.east_59f6 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.east_59f6 pre,
.east_59f6 code {
  overflow-x: auto;
  max-width: 100%;
}

.east_59f6 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);
}

.east_59f6 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.east_59f6 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.east_59f6 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.east_59f6 ul,
.east_59f6 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.east_59f6 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.east_59f6 strong {
  font-weight: 600;
  color: var(--color-text);
}

.east_59f6 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.east_59f6 a:hover {
  color: var(--color-primary-dark);
}

.disabled_basic_fa6a {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.disabled_basic_fa6a li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.disabled_basic_fa6a 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) {
  .green_6d25 {
    grid-template-columns: 1fr;
  }
  
  .gallery_e17a {
    font-size: 1.75rem;
  }
  
  .east_59f6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery_e17a {
    font-size: 1.5rem;
  }
  
  .east_59f6 h3 {
    font-size: 1.375rem;
  }
  
  .east_59f6 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.center-baa8 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.surface-purple-1225 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.feature_in_fa62 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.down-76a1 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.small-0bdf strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.slider-tall-db45 {
  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;
}

.component-current-60f4 {
  flex-shrink: 0;
}

.mask_15ee strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.content_1881 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .content_1881 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.photo-f8b4,
.frame_5cc0,
.overlay_iron_5e2a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.photo-f8b4 thead,
.frame_5cc0 thead {
  background: var(--color-primary);
  color: white;
}

.photo-f8b4 th,
.photo-f8b4 td,
.frame_5cc0 th,
.frame_5cc0 td,
.overlay_iron_5e2a th,
.overlay_iron_5e2a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .photo-f8b4 th,
  .photo-f8b4 td,
  .frame_5cc0 th,
  .frame_5cc0 td,
  .overlay_iron_5e2a th,
  .overlay_iron_5e2a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .photo-f8b4,
  .frame_5cc0,
  .overlay_iron_5e2a {
    min-width: 600px;
  }
}

.photo-f8b4 th,
.frame_5cc0 th,
.overlay_iron_5e2a th {
  font-weight: 600;
}

.photo-f8b4 tbody tr:hover,
.frame_5cc0 tbody tr:hover,
.overlay_iron_5e2a tbody tr:hover {
  background: var(--color-bg-alt);
}

.accordion-89d9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.article_right_bc69 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.breadcrumb_77bc {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.breadcrumb_77bc h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.article-6562 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.article-6562 h4 {
  color: white;
}

.out-2e78 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.header_advanced_9ba9 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.header_advanced_9ba9:last-child {
  border-bottom: none;
}

.header_advanced_9ba9 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.header_advanced_9ba9 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.menu-dynamic-d727 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.section-492c {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.section-492c:hover {
  text-decoration: underline;
}

.hard_fb4c {
  text-align: center;
  margin-bottom: var(--space-md);
}

.box_tiny_b03d {
  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);
}

.box_tiny_b03d span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.active_76e5 {
  font-weight: 600;
  color: white;
}

.tertiary-76d4 {
  list-style: none;
  padding: 0;
}

.tertiary-76d4 li {
  padding: var(--space-xs) 0;
}

.tooltip-top-2c6d {
  color: #4caf50;
}

.hover-plasma-4200 {
  color: #ff9800;
}

.disabled-f21a {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.iron-6df4 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.pattern-c886 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.stone_602b {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.tooltip-focused-2918 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.photo_ea98 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.right_701a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .right_701a {
    grid-template-columns: 1fr;
  }
}

.easy-8e04 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.easy-8e04:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.modal-4277 {
  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;
}

.easy-8e04 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.easy-8e04 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.picture-hard-b07d {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.active_76e5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.surface_d1a8 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.sort_action_aba8 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.sort_action_aba8 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.article-76c2 {
  max-width: 900px;
  margin: 0 auto;
}

.copper_1d67 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.feature-9ab7 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .feature-9ab7 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.button-bc07 {
  margin-top: var(--space-xxl);
}

.button-bc07 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.item-blue-df06 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .item-blue-df06 {
    grid-template-columns: 1fr;
  }
}

.avatar_motion_6011 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.section_in_bec0 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.thumbnail-f600 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.avatar_motion_6011 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.avatar_motion_6011 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.avatar_motion_6011 li {
  padding: var(--space-xs) 0;
  color: white;
}

.avatar_motion_6011 .notice-active-dd6f {
  width: 100%;
  background: white;
}

.section_in_bec0 .notice-active-dd6f {
  color: #667eea;
}

.thumbnail-f600 .notice-active-dd6f {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.notice_23d1 {
  max-width: 900px;
  margin: 0 auto;
}

.item_64e5 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.bronze_64b2 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.pattern-5c96 {
  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);
}

.bronze_64b2 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.link-hot-84ba {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .bronze_64b2 {
    padding: var(--space-md);
  }
  
  .link-hot-84ba {
    padding: var(--space-md);
  }
  
  .steel-1b90 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.disabled_f2ac ol,
.disabled_f2ac ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.disabled_f2ac li {
  margin-bottom: var(--space-sm);
}

.disabled_f2ac code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.content_2f1f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.light_286f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.steel-1b90 {
  margin-top: var(--space-lg);
  text-align: center;
}

.steel-1b90 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.top_883d,
.paragraph_upper_d65b,
.first_f9ce,
.small_f768 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.frame-508f {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.backdrop-up-11cf {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.frame_c7aa {
  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) {
  .frame_c7aa {
    font-size: 0.625rem;
  }
}

.button_ac50 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.button_ac50:hover {
  background: var(--color-primary-dark);
}

.action-fb44 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.action-fb44 h4 {
  margin-bottom: var(--space-md);
}

.glass-5a39 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.tooltip_6bb8 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.tertiary-d6f2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .tertiary-d6f2 {
    grid-template-columns: 1fr;
  }
}

.right_db55 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.thumbnail-519a {
  border-color: var(--color-success);
}

.input-plasma-e117 {
  border-color: var(--color-warning);
}

.article-fc4b {
  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);
}

.thumbnail-519a .article-fc4b {
  background: #e8f5e9;
  color: var(--color-success);
}

.input-plasma-e117 .article-fc4b {
  background: #fff3e0;
  color: var(--color-warning);
}

.right_db55 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.right_db55 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.aside_adab {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.bright-3c31 {
  margin: var(--space-xxl) 0;
}

.bright-3c31 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.bright-3c31 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.filter_8f47 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .filter_8f47 {
    grid-template-columns: 1fr;
  }
}

.logo-e9b5 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.logo-e9b5 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.frame_fresh_fa93 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.frame_fresh_fa93 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.header-glass-4c0e {
  margin-top: var(--space-xxl);
}

.image_down_6c44 {
  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);
}

.glass_3939 {
  text-align: center;
}

.notification_c411 {
  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);
}

.article-f10a {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.notification_c411 .active_76e5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.blue_3a2b {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.shade_0af7 p {
  margin-bottom: var(--space-md);
}

.sort_slow_a24c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .image_down_6c44 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.thumbnail-first-431a {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.heading-tall-bf45 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.secondary-east-7397 {
  margin-bottom: var(--space-xl);
}

.border_fdc7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.button_motion_0777 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.photo_lower_c1e0 {
  color: var(--color-text-light);
}

.current_22c6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.clean_146b {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.backdrop-ca3e {
  font-weight: 600;
  color: var(--color-text);
}

.footer-next-291b {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.label-6e99 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.component_medium_4ada {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.thumbnail_e443 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.photo-inner-e82e {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.bottom_d3c0 {
  border: 2px solid #4caf50;
}

.new-48b0 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.badge_static_0420 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.selected_5dbd {
  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;
}

.first-5867 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.texture-eeab {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.medium_7240 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.paragraph-yellow-53e8 {
  text-align: right;
}

.paragraph-yellow-53e8 .stale-0b0c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.overlay_fe8b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.top-2a86 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.top-2a86 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.thick-4726 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.chip-1bd6 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hovered-7c43 {
  background: #e8f5e9;
  color: #2e7d32;
}

.up-72c6 {
  background: #e3f2fd;
  color: #1565c0;
}

.layout-fresh-dfb8 {
  background: #fff3e0;
  color: #e65100;
}

.notice_6894 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.notice_6894 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.frame-action-fdbe {
  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);
}

.frame-action-fdbe:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.fixed-a1bd {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.icon-middle-535b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.icon-middle-535b strong {
  color: var(--color-primary);
}

.active-gold-1e18 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.avatar-d793 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.row_faef {
  max-width: 900px;
  margin: 0 auto;
}

.hero_1129 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.pattern-948c {
  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);
}

.pattern-948c:hover {
  background: var(--color-bg-alt);
}

.summary-steel-3c55 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.pattern-948c[aria-expanded="true"] .summary-steel-3c55 {
  transform: rotate(180deg);
}

.bottom_b55a {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.bottom_b55a h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.bottom_b55a ul,
.bottom_b55a ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.bottom_b55a li {
  margin-bottom: var(--space-xs);
}

.info_lite_1874 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.middle_a41e {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.info_lite_1874 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.accent-liquid-f2cb {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.container-current-71dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.accordion-d0b7 {
  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);
}

.background_glass_bd47 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.dropdown-0a9a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .dropdown-0a9a {
    grid-template-columns: 1fr;
  }
}

.wrapper-prev-5298,
.logo_light_129f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.wrapper-prev-5298 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.logo_light_129f {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.wrapper-prev-5298 h4,
.logo_light_129f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.wrapper-prev-5298 ul,
.logo_light_129f ul {
  list-style: none;
  padding: 0;
}

.wrapper-prev-5298 li,
.logo_light_129f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.motion_8f2c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .motion_8f2c {
    grid-template-columns: 1fr;
  }
}

.box_out_ee9a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.panel-339e {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.article_focused_4c3e {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.box_out_ee9a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.box_out_ee9a ul {
  list-style: none;
  padding: 0;
}

.box_out_ee9a li {
  padding: var(--space-xs) 0;
  color: white;
}

.hovered_456d {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.hovered_456d h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.hovered_456d p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.sidebar_00b9 {
  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);
}

.paper-d319 {
  font-style: italic;
}

.thumbnail-purple-de85 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hidden-glass-5def {
  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;
}

.hidden-glass-5def h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.hidden-glass-5def p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.wide_9360 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.down_c0c0 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.disabled-down-649d {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.tiny_5604 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .tiny_5604 {
    grid-template-columns: 1fr;
  }
}

.simple_daae {
  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);
}

.simple_daae:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.east_a649 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.simple_daae h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.simple_daae p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.backdrop-static-6858 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.hard_65c3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer variant: footer-content (subpages) */
.container-8f39 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.plasma-4aa1 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.plasma-4aa1 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.gallery-e7ea {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery-e7ea li {
  margin-bottom: var(--space-xs);
}

.gallery-e7ea a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.gallery-e7ea a:hover {
  color: white;
}

.preview_mini_8120 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.preview_mini_8120 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.preview_mini_8120 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.small_526a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.small_526a a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.small_526a a:hover {
  color: white;
}

.description-84cf > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .hard_65c3,
  .container-8f39 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.selected-d060 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.middle-230f p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.primary_ea4b {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.primary_ea4b .breadcrumb-left-0b04 {
  color: #4caf50;
  font-size: 0.875rem;
}

.caption-static-1d94 {
  list-style: none;
  padding: 0;
}

.caption-static-1d94 li {
  margin-bottom: var(--space-xs);
}

.caption-static-1d94 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.caption-static-1d94 a:hover {
  color: white;
}

.summary_bc4b {
  list-style: none;
  padding: 0;
}

.summary_bc4b li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.summary_bc4b a {
  color: #b0b0b0;
  text-decoration: none;
}

.summary_bc4b a:hover {
  color: white;
}

.description-84cf {
  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);
}

.tabs_under_ba9a p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.tabs_under_ba9a a {
  color: #4caf50;
  text-decoration: none;
}

.photo_north_f445 {
  font-size: 0.75rem;
  color: #666666;
}

.rough-da03 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.rough-da03 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.rough-da03 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.shadow_white_33bf {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.shadow_white_33bf:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .description-84cf {
    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;
  }
  
  .grid-selected-2f8f {
    font-size: 2rem;
  }
  
  .gallery_e17a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .overlay_east_d969,
  .green_6d25 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .right_701a,
  .tertiary-d6f2,
  .item-blue-df06,
  .filter_8f47,
  .dropdown-0a9a,
  .motion_8f2c,
  .tiny_5604,
  .hard_65c3,
  .container-8f39 {
    grid-template-columns: 1fr;
  }
  
  .carousel_ddbe {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .primary-east-ce13 {
    padding: var(--space-lg) 0;
  }
  
  .bright_197b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .bright_197b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notice-active-dd6f {
    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;
  }
  
  .carousel_ddbe {
    grid-template-columns: 1fr;
  }
  
  .south-a33c,
  .wide_9360,
  .glass-5a39 {
    flex-direction: column;
    width: 100%;
  }
  
  .image-orange-cec2,
  .accent_6e4e,
  .south-a33c .notice-active-dd6f,
  .wide_9360 .notice-active-dd6f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .grid-selected-2f8f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gallery_e17a {
    font-size: 1.375rem;
  }
  
  .icon-fixed-d7f1 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .gradient-prev-7085,
  .easy-8e04,
  .breadcrumb_77bc,
  .photo-inner-e82e,
  .item_64e5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .frame_c7aa {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .avatar-704c {
    gap: var(--space-xs);
  }
  
  .hidden-full-dc00 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .box_tiny_b03d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .notification_c411 {
    width: 150px;
    height: 150px;
  }
  
  .article-f10a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .main-98a1,
  .primary_glass_8f34,
  .south-a33c,
  .hidden-glass-5def,
  .down_c0c0,
  .backdrop-static-6858,
  .heading-white-e7df {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .primary-east-ce13 {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.west_4c91 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: c513 */
.phantom-card-a4 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
