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

.heading-motion-d926:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.clean-2cd4):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.clean-2cd4,
header,
.out-0332,
.wrapper_in_8f77,
.surface_outer_1c08,
.focus_e701,
.breadcrumb-86a3,
.disabled-2f42,
.top-aabd {
  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
   ============================================ */
.clean-2cd4 {
  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);
}

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

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

/* Scrolled state */
.clean-2cd4.pagination-9f67 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.current-e1b4 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.accent_huge_9864 {
  flex: 1;
}

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

.logo-south-7eb9 {
  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);
}

.logo-south-7eb9:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.logo-south-7eb9.fn-active-2986 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_east_ab5e svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny_1c43 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-north-d2f0 {
  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;
}

.info-dynamic-5ce3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-dynamic-5ce3 strong {
  font-weight: 600;
  color: var(--color-text);
}

.info-dynamic-5ce3 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.menu-e102 {
  position: relative;
  text-align: center;
}

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

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

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

.sort-paper-4eeb {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .banner_68d2 {
    grid-template-columns: 1fr;
  }
  
  .badge_active_66a4 {
    font-size: 1.75rem;
  }
  
  .frame-2205 {
    order: -1;
    max-width: 100%;
  }
  
  .menu-e102 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .badge_active_66a4 {
    font-size: 1.5rem;
  }
  
  .badge_current_f3d4 {
    font-size: 1rem;
  }
  
  .blue_0876 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .menu-e102 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column-4ec3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard_7bc9 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) {
  .selected_d550 {
    grid-template-columns: 1fr;
  }
  
  .column-4ec3 {
    font-size: 1.75rem;
  }
  
  .narrow_ad6d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .column-4ec3 {
    font-size: 1.5rem;
  }
  
  .narrow_ad6d h3 {
    font-size: 1.375rem;
  }
  
  .narrow_ad6d h4 {
    font-size: 1.125rem;
  }
}

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

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

.header-gold-f296 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.table-19a8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.description-4c44 {
  flex-shrink: 0;
}

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

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

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

.primary-hard-3023,
.link-9623,
.focus_82f7 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.primary-hard-3023 thead,
.link-9623 thead {
  background: var(--color-primary);
  color: white;
}

.primary-hard-3023 th,
.primary-hard-3023 td,
.link-9623 th,
.link-9623 td,
.focus_82f7 th,
.focus_82f7 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .primary-hard-3023 th,
  .primary-hard-3023 td,
  .link-9623 th,
  .link-9623 td,
  .focus_82f7 th,
  .focus_82f7 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .primary-hard-3023,
  .link-9623,
  .focus_82f7 {
    min-width: 600px;
  }
}

.primary-hard-3023 th,
.link-9623 th,
.focus_82f7 th {
  font-weight: 600;
}

.primary-hard-3023 tbody tr:hover,
.link-9623 tbody tr:hover,
.focus_82f7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.notification_9759 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.media-e358 {
  font-weight: 600;
  color: white;
}

.surface-huge-b296 {
  list-style: none;
  padding: 0;
}

.surface-huge-b296 li {
  padding: var(--space-xs) 0;
}

.next-d497 {
  color: #4caf50;
}

.table_6283 {
  color: #ff9800;
}

.title-black-ab06 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-dynamic-f1e1 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.advanced-c414 .rough-fc9d {
  width: 100%;
  background: white;
}

.black-63f3 .rough-fc9d {
  color: #667eea;
}

.black-91cb .rough-fc9d {
  color: #f5576c;
}

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

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

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

.element-purple-33b0 {
  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);
}

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

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

@media (max-width: 768px) {
  .title_pressed_2230 {
    padding: var(--space-md);
  }
  
  .container-0082 {
    padding: var(--space-md);
  }
  
  .photo-motion-9c76 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.input-gas-29b4 ol,
.input-gas-29b4 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.input-gas-29b4 li {
  margin-bottom: var(--space-sm);
}

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

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

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

.photo-motion-9c76 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.description-cool-c067,
.last-7b40,
.heading_e8b7,
.gallery_dark_63b7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.background-pink-98c1 {
  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) {
  .background-pink-98c1 {
    font-size: 0.625rem;
  }
}

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

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

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

.popup-right-2b27 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.down-d898 .first-aadf {
  background: #e8f5e9;
  color: var(--color-success);
}

.dim-7228 .first-aadf {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-212b {
  text-align: center;
}

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

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

.sort_c165 .media-e358 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.filter-pressed-39f3 p {
  margin-bottom: var(--space-md);
}

.pattern-medium-44d9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-mini-29a2 {
  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;
}

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

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

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

.gold-785f {
  text-align: right;
}

.gold-785f .search-bronze-f158 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.focus-7584 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.south-11c9 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.backdrop_motion_290f[aria-expanded="true"] .south-11c9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-50f0,
.fresh_8879 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.primary-50f0 h4,
.fresh_8879 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.primary-50f0 ul,
.fresh_8879 ul {
  list-style: none;
  padding: 0;
}

.primary-50f0 li,
.fresh_8879 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.slow_7a42 {
  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_8d16 {
  font-style: italic;
}

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

.south-94cc {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade_bronze_b8f2 .search_current_c615 {
  color: #4caf50;
  font-size: 0.875rem;
}

.background-center-de9f {
  list-style: none;
  padding: 0;
}

.background-center-de9f li {
  margin-bottom: var(--space-xs);
}

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

.background-center-de9f a:hover {
  color: white;
}

.wood-558b {
  list-style: none;
  padding: 0;
}

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

.wood-558b a {
  color: #b0b0b0;
  text-decoration: none;
}

.wood-558b a:hover {
  color: white;
}

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

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

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

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

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

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

.article-db1b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .input_copper_7ad5 {
    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;
  }
  
  .badge_active_66a4 {
    font-size: 2rem;
  }
  
  .column-4ec3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .banner_68d2,
  .selected_d550 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .avatar-selected-fe78,
  .info_832b,
  .block_wide_b927,
  .video-1886,
  .selected-1e30,
  .slider-light-f49d,
  .popup_9e47,
  .notice_1c3e {
    grid-template-columns: 1fr;
  }
  
  .component_south_358c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .breadcrumb-86a3 {
    padding: var(--space-lg) 0;
  }
  
  .frame_c83f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .frame_c83f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .rough-fc9d {
    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;
  }
  
  .component_south_358c {
    grid-template-columns: 1fr;
  }
  
  .row_3d67,
  .block_stale_0c87,
  .logo_old_2e30 {
    flex-direction: column;
    width: 100%;
  }
  
  .pagination_40fb,
  .popup_action_1d12,
  .row_3d67 .rough-fc9d,
  .block_stale_0c87 .rough-fc9d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .badge_active_66a4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .column-4ec3 {
    font-size: 1.375rem;
  }
  
  .hard_03a2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .image-glass-a5df,
  .gallery-9df9,
  .over_c521,
  .last-c043,
  .focus_lite_b973 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .background-pink-98c1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .logo-9b51 {
    gap: var(--space-xs);
  }
  
  .tiny_1c43 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .component-f9a3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .sort_c165 {
    width: 150px;
    height: 150px;
  }
  
  .north-4794 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .clean-2cd4,
  .out-0332,
  .row_3d67,
  .south-94cc,
  .disabled-2f42,
  .top-aabd,
  .shade_9993 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .breadcrumb-86a3 {
    page-break-inside: avoid;
  }
}

/* css-noise: cf79 */
.ghost-box-r5 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
