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

.thick_1847:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.slider_3390):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. */
.slider_3390,
header,
.yellow-9284,
.thumbnail-narrow-6871,
.hovered-6ffd,
.component-7a47,
.detail_ee09,
.pro_ac12,
.progress_8cad {
  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
   ============================================ */
.slider_3390 {
  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);
}

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

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

/* Scrolled state */
.slider_3390.element-solid-80f3 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.card-8254 {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.preview-static-d720 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-ad5c svg {
  flex-shrink: 0;
}

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

.new-8d11: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);
}

.new-8d11 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.south_6dba[aria-expanded="true"] .card-prev-fb4c:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .card-8254 {
    display: none;
  }
  
  .south_6dba {
    display: flex;
  }
  
  .solid-f24b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pattern-ad5c,
  .new-8d11 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .preview-static-d720 {
    position: relative;
  }
  
  .medium-5329 {
    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;
  }
  
  .under_0905[aria-expanded="true"] + .medium-5329 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .description_brown_f0a3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .card_short_e888 {
    gap: 8px;
  }
  
  .pattern-ad5c {
    display: none;
  }
  
  .new-8d11 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .component_complex_fb29 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.detail-cool-fd23 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-cool-fd23 svg {
  flex-shrink: 0;
}

.detail-cool-fd23 a {
  color: var(--color-primary);
  text-decoration: none;
}

.detail-cool-fd23 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.module-98ca a {
  color: var(--color-primary);
  text-decoration: none;
}

.module-98ca a:hover {
  text-decoration: underline;
}

.item-purple-190c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.tooltip-copper-31ee {
  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;
}

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

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

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

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

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

.fluid-b281 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .overlay-2a9a {
    grid-template-columns: 1fr;
  }
  
  .dynamic-6145 {
    font-size: 1.75rem;
  }
  
  .huge_573b {
    order: -1;
    max-width: 100%;
  }
  
  .fluid-b281 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dynamic-6145 {
    font-size: 1.5rem;
  }
  
  .menu_38f4 {
    font-size: 1rem;
  }
  
  .module-98ca {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .fluid-b281 {
    max-width: 250px;
  }
}

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

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

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

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

.cold-406b:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.widget-old-9ebd {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.block-052c {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo_light_c700 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) {
  .pagination-top-593c {
    grid-template-columns: 1fr;
  }
  
  .module_87f6 {
    font-size: 1.75rem;
  }
  
  .green-b3a8 {
    max-width: 100%;
  }
}

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

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

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

.surface-626c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.alert-tall-1d1f {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.highlight-fixed-325f {
  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;
}

.carousel-b1fd {
  flex-shrink: 0;
}

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

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

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

.iron-903b,
.header-copper-2e7c,
.tooltip-f1ea {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.iron-903b thead,
.header-copper-2e7c thead {
  background: var(--color-primary);
  color: white;
}

.iron-903b th,
.iron-903b td,
.header-copper-2e7c th,
.header-copper-2e7c td,
.tooltip-f1ea th,
.tooltip-f1ea td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .iron-903b th,
  .iron-903b td,
  .header-copper-2e7c th,
  .header-copper-2e7c td,
  .tooltip-f1ea th,
  .tooltip-f1ea td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .iron-903b,
  .header-copper-2e7c,
  .tooltip-f1ea {
    min-width: 600px;
  }
}

.iron-903b th,
.header-copper-2e7c th,
.tooltip-f1ea th {
  font-weight: 600;
}

.iron-903b tbody tr:hover,
.header-copper-2e7c tbody tr:hover,
.tooltip-f1ea tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.column_active_7c5c h4 {
  color: white;
}

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

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

.secondary-ef18:last-child {
  border-bottom: none;
}

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

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

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

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

.widget-tiny-f2e7:hover {
  text-decoration: underline;
}

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

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

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

.notification-22f9 {
  font-weight: 600;
  color: white;
}

.small-8328 {
  list-style: none;
  padding: 0;
}

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

.label_gold_a4dd {
  color: #4caf50;
}

.out_2d86 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-bright-308f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-full-d297 .silver-3f19 {
  width: 100%;
  background: white;
}

.primary_d8f5 .silver-3f19 {
  color: #667eea;
}

.message_0d8e .silver-3f19 {
  color: #f5576c;
}

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

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

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

.full-3dcf {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.breadcrumb-4d35 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .breadcrumb-4d35 {
    padding: var(--space-md);
  }
  
  .stale_7148 {
    padding: var(--space-md);
  }
  
  .background-motion-32cf {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.background-motion-32cf {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.dynamic_7bdf,
.pink-5529,
.paper-06f5,
.item-copper-3ebb {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.complex-57dd h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.copper-9cff {
  border-color: var(--color-warning);
}

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

.outline_c3a6 .black_a3e4 {
  background: #e8f5e9;
  color: var(--color-success);
}

.copper-9cff .black_a3e4 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.header-5c9c {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.content-7b42 {
  margin-top: var(--space-xxl);
}

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

.down-86f9 {
  text-align: center;
}

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

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

.header_87fc .notification-22f9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focused-4ec7 {
  text-align: right;
}

.focused-4ec7 .media-east-75f5 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.modal-simple-ddf8 {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-1c45 {
  background: #e3f2fd;
  color: #1565c0;
}

.dropdown-bright-17d0 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.notice-left-9a25 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

.mini-724d li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.content-3dd1 {
  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);
}

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

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

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

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

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

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

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

.form_narrow_533e ul,
.layout_east_fd2e ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.info-basic-1e3e {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

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

.notification-bronze-9935 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.chip_215f {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_3965 .selected-e559 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hover-6e5c {
  list-style: none;
  padding: 0;
}

.hover-6e5c li {
  margin-bottom: var(--space-xs);
}

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

.hover-6e5c a:hover {
  color: white;
}

.dark-823d {
  list-style: none;
  padding: 0;
}

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

.dark-823d a {
  color: #b0b0b0;
  text-decoration: none;
}

.dark-823d a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .static_fb95 {
    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;
  }
  
  .dynamic-6145 {
    font-size: 2rem;
  }
  
  .module_87f6 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .overlay-2a9a,
  .pagination-top-593c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .motion-b6e0,
  .wrapper_bb9e,
  .dropdown-d301,
  .slider-a990,
  .hidden_5647,
  .info-957c,
  .plasma-ce88,
  .label_ce8e {
    grid-template-columns: 1fr;
  }
  
  .box_brown_cf14 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .detail_ee09 {
    padding: var(--space-lg) 0;
  }
  
  .notice_d767 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .notice_d767 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .silver-3f19 {
    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;
  }
  
  .box_brown_cf14 {
    grid-template-columns: 1fr;
  }
  
  .bottom_4d5a,
  .input_gas_8527,
  .hero_c089 {
    flex-direction: column;
    width: 100%;
  }
  
  .small_2c01,
  .title-0068,
  .bottom_4d5a .silver-3f19,
  .input_gas_8527 .silver-3f19 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dynamic-6145 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .module_87f6 {
    font-size: 1.375rem;
  }
  
  .surface_0075 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .menu_fb5e,
  .mask-c6a0,
  .icon-b911,
  .current_686b,
  .east_d1a3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .fast_d3c9 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .white-d302 {
    gap: var(--space-xs);
  }
  
  .detail-cool-fd23 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .bright_14cf {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .header_87fc {
    width: 150px;
    height: 150px;
  }
  
  .alert_3d47 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .slider_3390,
  .yellow-9284,
  .bottom_4d5a,
  .image_wide_0778,
  .pro_ac12,
  .progress_8cad,
  .south_6dba {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .detail_ee09 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 87a2 */
.phantom-card-v8 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.1;
}
