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

.filter_dark_f45f:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.paragraph_04be):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. */
.paragraph_04be,
header,
.border_42d9,
.sort_iron_3923,
.badge_cf05,
.modal_fresh_e159,
.bottom_16be,
.menu-wide-3b18,
.glass-73a5 {
  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
   ============================================ */
.paragraph_04be {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

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

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

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

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

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

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

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

.stone_1e29 {
  flex: 1;
}

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

.layout-black-731a {
  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);
}

.layout-black-731a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.layout-black-731a.section-50ca {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.under-31fc {
  position: relative;
}

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

.up-730b svg {
  transition: transform 0.2s ease;
}

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

.box-upper-3a21 {
  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;
}

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

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

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

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

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

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

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

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

.widget_dark_998f svg {
  flex-shrink: 0;
}

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

.in-77a7: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);
}

.in-77a7 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.modal-hard-3f1c {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.bottom_3b88[aria-expanded="true"] .modal-hard-3f1c:nth-child(2) {
  opacity: 0;
}

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

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

  .stone_1e29::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .stone_1e29.nav-bcf6 {
    display: block;
    right: 0;
  }
  
  .liquid_2c01 {
    flex-direction: column;
    gap: 0;
  }
  
  .layout-black-731a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .stone_1e29::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;
  }
  
  .stone_1e29.nav-bcf6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .stone_1e29 {
    display: none;
  }
  
  .bottom_3b88 {
    display: flex;
  }
  
  .box_ab4b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .widget_dark_998f,
  .in-77a7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .under-31fc {
    position: relative;
  }
  
  .box-upper-3a21 {
    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;
  }
  
  .up-730b[aria-expanded="true"] + .box-upper-3a21 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .media_west_1dd2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .footer_top_98a3 {
    gap: 8px;
  }
  
  .widget_dark_998f {
    display: none;
  }
  
  .in-77a7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hard_d82c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.accordion_7a01 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.mini-f031 a:hover {
  text-decoration: underline;
}

.mask-static-8eb1 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

.main_d449 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .purple-5552 {
    grid-template-columns: 1fr;
  }
  
  .glass-a1a5 {
    font-size: 1.75rem;
  }
  
  .fast-ec27 {
    order: -1;
    max-width: 100%;
  }
  
  .main_d449 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .glass-a1a5 {
    font-size: 1.5rem;
  }
  
  .image-up-52da {
    font-size: 1rem;
  }
  
  .mini-f031 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .main_d449 {
    max-width: 250px;
  }
}

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

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

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

.outline-huge-1a5c {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.outline-huge-1a5c:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-pink-3944 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east_1357 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) {
  .text_25d9 {
    grid-template-columns: 1fr;
  }
  
  .article_1e14 {
    font-size: 1.75rem;
  }
  
  .container_1bf8 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.accordion_d834 {
  flex-shrink: 0;
}

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

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

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

.wrapper_blue_c508,
.modal-under-dfb9,
.steel_bf4d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.wrapper_blue_c508 thead,
.modal-under-dfb9 thead {
  background: var(--color-primary);
  color: white;
}

.wrapper_blue_c508 th,
.wrapper_blue_c508 td,
.modal-under-dfb9 th,
.modal-under-dfb9 td,
.steel_bf4d th,
.steel_bf4d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .wrapper_blue_c508 th,
  .wrapper_blue_c508 td,
  .modal-under-dfb9 th,
  .modal-under-dfb9 td,
  .steel_bf4d th,
  .steel_bf4d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .wrapper_blue_c508,
  .modal-under-dfb9,
  .steel_bf4d {
    min-width: 600px;
  }
}

.wrapper_blue_c508 th,
.modal-under-dfb9 th,
.steel_bf4d th {
  font-weight: 600;
}

.wrapper_blue_c508 tbody tr:hover,
.modal-under-dfb9 tbody tr:hover,
.steel_bf4d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.thumbnail-9761 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.hidden-00a8 {
  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);
}

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

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

.pagination-paper-ea26 {
  list-style: none;
  padding: 0;
}

.pagination-paper-ea26 li {
  padding: var(--space-xs) 0;
}

.rough_a77d {
  color: #4caf50;
}

.dropdown-2de6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-d96b .icon_f052 {
  width: 100%;
  background: white;
}

.south-eb64 .icon_f052 {
  color: #667eea;
}

.thick-4b0d .icon_f052 {
  color: #f5576c;
}

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

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

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

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

.active-6ebb h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .active-6ebb {
    padding: var(--space-md);
  }
  
  .progress_thick_12d5 {
    padding: var(--space-md);
  }
  
  .frame-pressed-f151 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.next-e275 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.sort-59ec,
.warm_a319,
.list_cb9c,
.summary_b7d4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.hover-soft-3d15:hover {
  background: var(--color-primary-dark);
}

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

.header-large-b4a7 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.detail-next-b944 {
  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);
}

.upper_a782 .detail-next-b944 {
  background: #e8f5e9;
  color: var(--color-success);
}

.yellow_e4ab .detail-next-b944 {
  background: #fff3e0;
  color: var(--color-warning);
}

.layout-hovered-0c19 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.layout-hovered-0c19 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-right-cd18 {
  text-align: center;
}

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

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

.bronze_21c9 .content_263b {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.hover-plasma-45b4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.motion_31ca {
  text-align: right;
}

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

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

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

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

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

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

.container-71c1 {
  background: #e8f5e9;
  color: #2e7d32;
}

.logo_bright_d159 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.green-14af {
  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);
}

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

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

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

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

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

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

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

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

.badge-plasma-ca97 {
  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);
}

.badge-plasma-ca97:hover {
  background: var(--color-bg-alt);
}

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

.badge-plasma-ca97[aria-expanded="true"] .hero_over_cfcf {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper_c769 ul,
.paper_19f5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.badge-motion-008d {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.badge-motion-008d h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.badge-motion-008d p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

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

.photo-89ec {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.paragraph-dirty-7ad4 {
  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);
}

.paragraph-dirty-7ad4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.paragraph-dirty-7ad4 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

.row-small-04f4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.row-small-04f4 .thick-ce31 {
  color: #4caf50;
  font-size: 0.875rem;
}

.stone-623d {
  list-style: none;
  padding: 0;
}

.stone-623d li {
  margin-bottom: var(--space-xs);
}

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

.stone-623d a:hover {
  color: white;
}

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

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

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

.preview_fdb8 a:hover {
  color: white;
}

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

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

.orange-1e94 a {
  color: #4caf50;
  text-decoration: none;
}

.photo-basic-eb63 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .wide-feab {
    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;
  }
  
  .glass-a1a5 {
    font-size: 2rem;
  }
  
  .article_1e14 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .purple-5552,
  .text_25d9 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tertiary-cool-ef05,
  .heading-west-ece8,
  .hard_902f,
  .link_top_2d0b,
  .fast_29b8,
  .static_a5a5,
  .thumbnail_ac89,
  .banner_e35a {
    grid-template-columns: 1fr;
  }
  
  .tabs_short_0f0a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .bottom_16be {
    padding: var(--space-lg) 0;
  }
  
  .main_07a5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .main_07a5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .icon_f052 {
    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;
  }
  
  .tabs_short_0f0a {
    grid-template-columns: 1fr;
  }
  
  .lite_e598,
  .video-b30d,
  .gradient_987e {
    flex-direction: column;
    width: 100%;
  }
  
  .gallery_fresh_ea9a,
  .notice_8afb,
  .lite_e598 .icon_f052,
  .video-b30d .icon_f052 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .glass-a1a5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .article_1e14 {
    font-size: 1.375rem;
  }
  
  .grid_1983 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .breadcrumb-13de,
  .new_b652,
  .image_dynamic_f442,
  .thumbnail_huge_6d68,
  .liquid_25e1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .link_7238 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .basic-cf7a {
    gap: var(--space-xs);
  }
  
  .accordion_7a01 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hidden-00a8 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .bronze_21c9 {
    width: 150px;
    height: 150px;
  }
  
  .full-6ca8 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .paragraph_04be,
  .border_42d9,
  .lite_e598,
  .active_0108,
  .menu-wide-3b18,
  .glass-73a5,
  .bottom_3b88 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .bottom_16be {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e0a3 */
.shadow-element-j4 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
