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

.avatar_53c7:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.banner-static-8fb7):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. */
.banner-static-8fb7,
header,
.first_80e2,
.gold_11aa,
.hard-e67e,
.pattern_6863,
.notification-solid-1532,
.middle_626e,
.carousel-7c5e {
  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
   ============================================ */
.banner-static-8fb7 {
  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-green-146c {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.banner-static-8fb7.slider_cd43 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.hard-3c05 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.section_cbbc {
  flex: 1;
}

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

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

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

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

/* Dropdown Navigation */
.plasma-644c {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.dark-3cc1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

.box-lower-31b7 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.form_e17a[aria-expanded="true"] .box-lower-31b7:nth-child(2) {
  opacity: 0;
}

.form_e17a[aria-expanded="true"] .box-lower-31b7:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .section_cbbc {
    display: none;
  }
  
  .form_e17a {
    display: flex;
  }
  
  .outline_west_e017 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dark-3cc1,
  .smooth_62f4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .plasma-644c {
    position: relative;
  }
  
  .nav_wide_ff3b {
    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;
  }
  
  .hero_south_2ecb[aria-expanded="true"] + .nav_wide_ff3b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast-b6a9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dark_cff7 {
    gap: 8px;
  }
  
  .dark-3cc1 {
    display: none;
  }
  
  .smooth_62f4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hard-3c05 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.tag-brown-294e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-brown-294e svg {
  flex-shrink: 0;
}

.tag-brown-294e a {
  color: var(--color-primary);
  text-decoration: none;
}

.tag-brown-294e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.photo-hard-24c0 {
  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) {
  .photo-hard-24c0 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .photo-hard-24c0 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.feature-f677 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .article_7845 {
    grid-template-columns: 1fr;
  }
  
  .photo-hard-24c0 {
    font-size: 1.75rem;
  }
  
  .purple_9d2e {
    order: -1;
    max-width: 100%;
  }
  
  .feature-f677 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .photo-hard-24c0 {
    font-size: 1.5rem;
  }
  
  .black_f716 {
    font-size: 1rem;
  }
  
  .shadow_solid_8460 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .feature-f677 {
    max-width: 250px;
  }
}

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

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

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

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

.video-hard-2b83:hover {
  background: var(--color-primary);
  color: white;
}

.wrapper-cold-7f47 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.wrapper-cold-7f47:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-de25 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-wood-7cc2 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.gradient-wood-7cc2 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) {
  .video-east-6aca {
    grid-template-columns: 1fr;
  }
  
  .secondary_over_9704 {
    font-size: 1.75rem;
  }
  
  .detail-cc99 {
    max-width: 100%;
  }
}

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

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

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

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

.notification-2a50 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.selected_3eea {
  flex-shrink: 0;
}

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

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

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

.lite_40c7,
.search_plasma_32b2,
.media_77d3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lite_40c7 thead,
.search_plasma_32b2 thead {
  background: var(--color-primary);
  color: white;
}

.lite_40c7 th,
.lite_40c7 td,
.search_plasma_32b2 th,
.search_plasma_32b2 td,
.media_77d3 th,
.media_77d3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lite_40c7 th,
  .lite_40c7 td,
  .search_plasma_32b2 th,
  .search_plasma_32b2 td,
  .media_77d3 th,
  .media_77d3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .lite_40c7,
  .search_plasma_32b2,
  .media_77d3 {
    min-width: 600px;
  }
}

.lite_40c7 th,
.search_plasma_32b2 th,
.media_77d3 th {
  font-weight: 600;
}

.lite_40c7 tbody tr:hover,
.search_plasma_32b2 tbody tr:hover,
.media_77d3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.mini_2fd6 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.article-lite-137f {
  font-weight: 600;
  color: white;
}

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

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

.focus-fluid-2d97 {
  color: #4caf50;
}

.banner_plasma_b00f {
  color: #ff9800;
}

.banner-0d56 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-lite-137f {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .overlay-red-0b28 {
    grid-template-columns: 1fr;
  }
}

.form-stale-2fd1 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.form-stale-2fd1 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.form-stale-2fd1 li {
  padding: var(--space-xs) 0;
  color: white;
}

.form-stale-2fd1 .copper_98c7 {
  width: 100%;
  background: white;
}

.tabs_bronze_2ade .copper_98c7 {
  color: #667eea;
}

.panel_stale_a0ab .copper_98c7 {
  color: #f5576c;
}

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

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

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

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

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

.under-0ebf {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .iron-da25 {
    padding: var(--space-md);
  }
  
  .under-0ebf {
    padding: var(--space-md);
  }
  
  .smooth_50e4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.widget-left-b8e2 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.item-54a4,
.outline_3cd3,
.solid-cb90,
.new_c744 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.lower-79bd:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.surface-9e46 {
  border-color: var(--color-success);
}

.sidebar-brown-39e1 {
  border-color: var(--color-warning);
}

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

.surface-9e46 .blue_1477 {
  background: #e8f5e9;
  color: var(--color-success);
}

.sidebar-brown-39e1 .blue_1477 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-hard-fcc1 {
  margin-top: var(--space-xxl);
}

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

.wrapper-b467 {
  text-align: center;
}

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

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

.hard-2173 .article-lite-137f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.message-35d1 {
  color: var(--color-text-light);
}

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

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

.focused-58b0 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.north-9027 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.tertiary_f9e7 {
  text-align: right;
}

.tertiary_f9e7 .plasma_b95b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.gold-2383 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.picture-0f81 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.blue-0045[aria-expanded="true"] .popup_dirty_e004 {
  transform: rotate(180deg);
}

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

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

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

.filter-5cf2 li {
  margin-bottom: var(--space-xs);
}

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

.primary-plasma-1c08 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

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

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

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

.active-6d16 {
  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);
}

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

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

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

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

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

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

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

.notification_steel_12d5 ul,
.layout_d187 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fast_615d {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.pattern-hard-c0d1 {
  font-style: italic;
}

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

.short-118e {
  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;
}

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

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

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

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

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

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

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

.popup_upper_734c {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

.next-3ffc .header_solid_dc52 {
  color: #4caf50;
  font-size: 0.875rem;
}

.out-3bf8 {
  list-style: none;
  padding: 0;
}

.out-3bf8 li {
  margin-bottom: var(--space-xs);
}

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

.out-3bf8 a:hover {
  color: white;
}

.primary-pro-ecd3 {
  list-style: none;
  padding: 0;
}

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

.primary-pro-ecd3 a {
  color: #b0b0b0;
  text-decoration: none;
}

.primary-pro-ecd3 a:hover {
  color: white;
}

.icon-brown-ec17 {
  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);
}

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

.east-0bb6 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .icon-brown-ec17 {
    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;
  }
  
  .photo-hard-24c0 {
    font-size: 2rem;
  }
  
  .secondary_over_9704 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .article_7845,
  .video-east-6aca {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sidebar_5d3e,
  .title_e117,
  .overlay-red-0b28,
  .white-c0e1,
  .south-4824,
  .hero-0635,
  .red-4dc2,
  .button-b915 {
    grid-template-columns: 1fr;
  }
  
  .header-blue-f9a4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notification-solid-1532 {
    padding: var(--space-lg) 0;
  }
  
  .thumbnail-de25 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .thumbnail-de25 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .copper_98c7 {
    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;
  }
  
  .header-blue-f9a4 {
    grid-template-columns: 1fr;
  }
  
  .yellow_160e,
  .over-f73c,
  .carousel_green_0efb {
    flex-direction: column;
    width: 100%;
  }
  
  .surface_dd26,
  .blue_bc4e,
  .yellow_160e .copper_98c7,
  .over-f73c .copper_98c7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .photo-hard-24c0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .secondary_over_9704 {
    font-size: 1.375rem;
  }
  
  .mask-0e4b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .glass_123f,
  .link-2ce9,
  .gradient_pink_2648,
  .form-pro-5159,
  .aside-cool-724f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dirty-0606 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hover-8e7e {
    gap: var(--space-xs);
  }
  
  .tag-brown-294e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .fast_a0c0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hard-2173 {
    width: 150px;
    height: 150px;
  }
  
  .focused-9459 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .banner-static-8fb7,
  .first_80e2,
  .yellow_160e,
  .short-118e,
  .middle_626e,
  .carousel-7c5e,
  .form_e17a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notification-solid-1532 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 7924 */
.shadow-element-d3 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
